如何检测地图视图上的当前缩放级别?
我有一个地图视图,可以从当前位置绘制半径叠加。但为此,我需要知道地图上的当前缩放级别。 我该怎么做?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用 getZoomLevel() 方法。
Use getZoomLevel() method of MapView class.
使用该功能:
Use the function:
getZoomLevel() 现已弃用 (v 6+)
请改用 getZoomLevelDouble()。
getZoomLevel() is deprecated now (v 6+)
Use getZoomLevelDouble() instead.
在MapView类中,调用
方法 - getZoomLevel()。
它返回地图的当前缩放级别。
In MapView Class, call
method - getZoomLevel().
It returns the current zoom level of the map.