带图层的离线MapBox

时间:2016-11-21 12:12:31

标签: android mapbox-gl

我正在使用MapBox(com.mapbox.mapboxsdk:mapbox-android-sdk:4.2.0-beta.1@aar)编写一个Android应用程序,其中包含来自在线工作的privet tile服务器的图层 -

private void addLayer(String url, String sourceName, String layerName)
{

    String sourceId;

    RasterSource webMapSource = new RasterSource(
            sourceName,
            new TileSet("tileset", url));

    mMapboxMap.addSource(webMapSource);
    // Add the web map source to the map.
    RasterLayer webMapLayer = new RasterLayer(layerName, sourceName);
    mMapboxMap.addLayer(webMapLayer);
}  

但我希望它能脱机工作(我使用com.mapbox.mapboxsdk.offline.OfflineManager)但离线我只能看到没有图层的地图 - 我该如何添加它们?

0 个答案:

没有答案