Reputation: 699
I have a map view that draws radius overlay from current location. But for that, I need to know current zoomlevel on the map. How can I do this?
Upvotes: 1
Views: 3282
Reputation: 1427
getZoomLevel() is deprecated now (v 6+) Use getZoomLevelDouble() instead.
Upvotes: 1
Reputation: 513
In MapView Class, call method - getZoomLevel(). It returns the current zoom level of the map.
Upvotes: 0