1
edit
Changes
no edit summary
{
Student student = (Student) _keywordFilterField.getSelectedElement();
}
})); </source>10.5. Implement <code>showAddress()</code> method: <source lang="java"> public void showAddress(String adrs)throws LocatorException{ final String address = adrs; new Thread(new Runnable(){ public void run(){ try{ Coordinates co = new Coordinates(45.423488, -75.697929, 0); Landmark[] landm = Locator.geocode(address, co); //Get latitude and longitude double lon = landm[0].getQualifiedCoordinates().getLongitude()*10000.0 ; double lat = landm[0].getQualifiedCoordinates().getLatitude()*10000.0; //create mapview MapView mapView = new MapView(); mapView.setLatitude((int)lat); mapView.setLongitude((int)lon); mapView.setZoom(10); // Invoke maps application for current Contact Invoke.invokeApplication(Invoke.APP_TYPE_MAPS, new MapsArguments(mapView)); } catch(LocatorException ex){ Dialog.alert("Cannot find location: " + ex.getMessage()); } catch(Exception ex){ Dialog.alert("Exception when getting location: " + ex.getMessage()); } } }).start(); }
</source>