1

我使用以下代码调用安装在黑莓设备中的谷歌地图

public void invokeGMaps(GMLocation l) {

    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());
        Dialog.alert("error1 " + e.getMessage());
    } catch (Exception e) {
        Dialog.alert("error2 " + e.getMessage());
    }
}  

这工作正常。我已将当前职位传递给它。

假设用户在使用谷歌地图后将在谷歌地图上搜索任何特定位置。所以在返回应用程序时,我想从谷歌地图中搜索位置纬度和经度。

所以请告诉我如何从谷歌地图应用程序中获取它?请帮助我,或者有关黑莓搜索位置的任何帮助如何完成?

感谢您耐心阅读我的问题。

4

0 回答 0