ご覧のとおり、実際の座標を変換して blackberry map を呼び出しています
public static void showMap(String latitude,String longatude){
try {
int specailLatitude = (int)(Double.parseDouble(latitude))*100000;
int specailLongatude = (int)(Double.parseDouble(longatude))*100000;
MapView mapView=new MapView();
mapView.setLatitude(specailLatitude);
mapView.setLongitude(specailLongatude);
mapView.setZoom(07);
MapsArguments arg=new MapsArguments(mapView);
Invoke.invokeApplication(Invoke.APP_TYPE_MAPS, arg);
} catch(Exception e) {
CustomUtility.showToast("Map is not available "+e.getMessage());
}
}// end of the showMap
しかし問題は、これが現在正しい場所を示していることです.UAEでは常に同じ場所を示しています.私が正しく変換していることを助けてください.