gpt4 book ai didi

javascript - 我可以将用户限制在 Bing map 上的特定范围和缩放级别吗?

转载 作者:行者123 更新时间:2023-11-30 06:05:05 25 4
gpt4 key购买 nike

类似于Can I limit users to a specific range and zoom level on Google Maps? Bing map 除外。

我在 API 中没有看到任何内容专门针对它,所以我不确定在不覆盖某些方法的情况下是否可以轻松完成(而且我不知道那是哪个方法)。我只使用 javascript,不使用 silverlight 或任何服务器端技术。

最佳答案

这是可以做到的,但他们并不容易。您需要监听鼠标移动事件。

function LimitMove(e)
{
if (/* is map inside valid bounds check */)
{
return true; //true means we will handle the event (do nothing)
}
return false; //false means let the map do the default action (move)
}

map.AttachEvent("onmousemove", LimitMove);

关于javascript - 我可以将用户限制在 Bing map 上的特定范围和缩放级别吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5520092/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com