关于地图的比例尺和等级问题有谁比较了解吗
LatLng ll = new LatLng(location.getLatitude(), location.getLongitude());
float f = mBaiduMap.getMaxZoomLevel();
MapStatusUpdate u = MapStatusUpdateFactory.newLatLngZoom(ll, f - 2);
LatLng ll = new LatLng(location.getLatitude(), location.getLongitude());
float f = mBaiduMap.getMaxZoomLevel();
MapStatusUpdate u = MapStatusUpdateFactory.newLatLngZoom(ll, f - 2);
2016-07-28
举报