在 Windows Phone 的 bing 地图中设置缩放限制
是否可以限制地图的最大缩放比例? 我使用 SetView 来适应图钉列表的地图;如果我只有一个图钉,地图将缩放至 21。 太多了,例如,我想将其限制为 15。 谢谢
Is it possible to limit max zoom of my map ?
I'm using SetView to fit the map for a list of pushpins; if i have only one pushpin, map is zooming to 21.
It's way to much, I would like to limit it to 15, for example.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当前没有单个属性可以设置最大缩放级别。但是,您可以使用 MapZoom 事件处理程序并检查最大 ZoomLevel - 如果超出限制,则阻止进一步处理。
There is currently no single property that set the maximum zoom level. However, you can use the MapZoom event handler and check against the maximum ZoomLevel - if it is off the limits, prevent from further handling.
您可以在
SetView
调用后手动设置ZoomLevel
:请注意
TargetZoomLevel
属性。You can manually set
ZoomLevel
afterSetView
call:Please pay attention to
TargetZoomLevel
property.