android 中 google 地图的缩放范围是多少
What is the zooming bounds of google maps in android
我需要在 google 地图视图上移动相机功能的最大缩放。
我使用 24f 进行缩放,但对于项目来说还不够。
map.moveCamera(CameraUpdateFactory.newLatLngZoom(coordinates, 24f));
有没有人有解决办法?
Google Map Api for Androids says that the range of zoom levels permitted by the map depends on a number of factors including location, map type and screen size. To get the max zoom level use getMaxZoomLevel();
我需要在 google 地图视图上移动相机功能的最大缩放。 我使用 24f 进行缩放,但对于项目来说还不够。
map.moveCamera(CameraUpdateFactory.newLatLngZoom(coordinates, 24f));
有没有人有解决办法?
Google Map Api for Androids says that the range of zoom levels permitted by the map depends on a number of factors including location, map type and screen size. To get the max zoom level use getMaxZoomLevel();