我正在尝试从我的应用程序访问谷歌地图。我的代码如下:
public void invokeGMaps(GMLocation l) {
int mh = CodeModuleManager.getModuleHandle("GoogleMaps");
if (mh == 0) {
try {
throw new ApplicationManagerException("GoogleMaps isn't installed");
}
catch (ApplicationManagerException e) {
System.out.println(e.getMessage());
}
}
URLEncodedPostData uepd = new URLEncodedPostData(null, false);
uepd.append("action", "LOCN");
uepd.append("a", "@latlon:" + l.getLatitude() + "," + l.getLongitude());
uepd.append("title", l.getName());
uepd.append("description", l.getDescription());
String[] args = { "http://gmm/x?" + uepd.toString() };
ApplicationDescriptor ad = CodeModuleManager.getApplicationDescriptors(mh)[0];
ApplicationDescriptor ad2 = new ApplicationDescriptor(ad, args);
try {
ApplicationManager.getApplicationManager().runApplication(ad2, true);
}
catch (ApplicationManagerException e) {
System.out.println(e.getMessage());
}
}
当我尝试启动地图时出现空指针异常,这是因为我尚未安装谷歌地图。如何安装地图以使我的应用程序运行?我必须在哪里安装地图?我访问了链接“m.google.com/maps”,但我不明白或看不到安装地图的位置?地图是否要安装在我的应用程序将运行的每台手机上?请指导。我完全迷路了。