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