Arcgis for Android 10.2 mapView缩小级别

时间:2014-03-07 03:00:59

标签: android arcgis

我需要缩小我的地图。我试过--mMapView.zoomout(); - 但它只缩小1级,我想进一步缩小。我知道可以在.xml --mapoptions.ZoomLevel =“5”中完成 - 但我想放入我的Activity类。需要一些指南,非常感谢。

1 个答案:

答案 0 :(得分:1)

MapOptions option = new MapOptions(MapOptions.MapType type);
// Sets zoom level.
option.setZoom(int zoom);

// Switches basemap by the given options.
mMapView.setMapOptions(MapOptions options);