在 Windows Phone 的 bing 地图中设置缩放限制

发布于 2024-10-18 11:43:22 字数 90 浏览 1 评论 0原文

是否可以限制地图的最大缩放比例? 我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

三寸金莲 2024-10-25 11:43:22

当前没有单个属性可以设置最大缩放级别。但是,您可以使用 MapZoom 事件处理程序并检查最大 ZoomLevel - 如果超出限制,则阻止进一步处理。

private void map1_MapZoom(object sender, Microsoft.Phone.Controls.Maps.MapZoomEventArgs e)
{
    if (((Map)sender).ZoomLevel > 3)
    {
        e.Handled = true;
    }
}

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.

private void map1_MapZoom(object sender, Microsoft.Phone.Controls.Maps.MapZoomEventArgs e)
{
    if (((Map)sender).ZoomLevel > 3)
    {
        e.Handled = true;
    }
}
潜移默化 2024-10-25 11:43:22

您可以在 SetView 调用后手动设置 ZoomLevel

myMap.SetView(LocationRect.CreateLocationRect(coordinates));
myMap.ZoomLevel = Math.Min(StopsMap.TargetZoomLevel, 15);

请注意 TargetZoomLevel 属性。

You can manually set ZoomLevel after SetView call:

myMap.SetView(LocationRect.CreateLocationRect(coordinates));
myMap.ZoomLevel = Math.Min(StopsMap.TargetZoomLevel, 15);

Please pay attention to TargetZoomLevel property.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文