诺基亚Android SDK不工作



我正在尝试将逐点导航嵌入到我的android移动应用程序中。我发现诺基亚有一个android api。我已经跟随https://developer.here.com/mobile-sdks/documentation/android/topics/app-simple.html将诺基亚here地图嵌入到我的android应用程序中。

问题是当我打开应用程序时,屏幕是空白的,地图没有加载。我试着调试,发现mapFragment的OnEngineInitListener()正在生成并错误为"UNKNOWN"

// Search for the map fragment to finish setup by calling init().
    mapFragment = (MapFragment)getFragmentManager().findFragmentById(
                    R.id.mapfragment);
    mapFragment.init(new OnEngineInitListener() {
        @Override
        public void onEngineInitializationCompleted(
                        OnEngineInitListener.Error error)
        {
            if (error == OnEngineInitListener.Error.NONE) {
                // retrieve a reference of the map from the map fragment
                map = mapFragment.getMap();
                // Set the map center to the Vancouver region (no animation)
                map.setCenter(new GeoCoordinate(49.196261, -123.004773, 0.0),
                                Map.Animation.NONE);
                // Set the zoom level to the average between min and max
                map.setZoomLevel(
                    (map.getMaxZoomLevel() + map.getMinZoomLevel()) / 2);
            } else {
                System.out.println("ERROR: Cannot initialize Map Fragment");
                System.out.println(error);
            }
        }
    });

有人使用过诺基亚HERE Android API吗?如果是,并且您遇到了类似的问题,请分享您的解决方案。

如果有人能向我推荐一个地图api,提供逐点导航,我会非常感激,我可以将其嵌入到我的android应用程序中。

提前谢谢。

您使用的是HERE Android SDK的评估版还是生产版?版本号是多少?评估日期是什么时候?您可以从包含SDK的zip文件名中找到所有这些信息。

相关内容

  • 没有找到相关文章

最新更新