Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我能够从 arcgis SDK 缓存切片并将其保存在文件夹中。但是一旦我关闭应用程序并重新打开它,我就无法离线显示缓存的地图。有人可以帮我如何保存以供离线使用..?
一旦缓存保存在您的设备中。当它从在线层切换到本地层时,它会自动显示。创建一个本地切片图层并将其添加到您的 onCreate 方法中的地图视图。
ArcGISLocalTiledLayer arcGISLocalTiledLayer = new ArcGISLocalTiledLayer(defaultPath +File.separator+"Layers"); mMapView.addLayer(arcGISLocalTiledLayer);