如何将KmlLayer添加到M4B Google Map for Business?

时间:2016-09-08 10:01:55

标签: java android google-maps kml kmz

我需要按照以下步骤将KmlLayer添加到Google地图中。

首先,我正在使用" Google maps utils"使用以下Gradle

compile 'com.google.maps.android:android-maps-utils:0.4+'

和此documentation

及以下是应用的代码:

try {
    KmlLayer kmlLayer = new KmlLayer(googleMap, R.raw.traiff160809, RTA.getContext());
    kmlLayer.addLayerToMap();
} catch (XmlPullParserException e) {
    e.printStackTrace();
} catch (IOException e) {
    e.printStackTrace();
}

但我无法在构造函数

中传递业务实例的Google地图

请咨询, 谢谢!

0 个答案:

没有答案