Google 地图 v3 的 InfoWindow 替代品

发布于 2024-08-18 19:49:04 字数 314 浏览 8 评论 0原文

我正在寻找 Google Maps v3 的 InfoWindow 替代品。我想用它在标记鼠标悬停时弹出。标准的 InfoWindow 完全无法使用,因为它会平移并使其本身变得很麻烦。 Google 地图 v2 具有出色的 GxMarker(不适用于新 API):http://code. toeat.com/gxmarker.html

有谁知道 Google Maps v3 的类似插件,或者其他方法来解决 InfoWindow 的专横行为吗?

I'm looking for an InfoWindow replacement for Google Maps v3. I want to use it for popping up on marker mouseover. The standard InfoWindow is wholly unusable because it pans and makes itself a nuisance. Google Maps v2 had the excellent GxMarker (doesn't work with the new API): http://code.toeat.com/gxmarker.html

Does anyone know of a similar plugin for Google Maps v3, or other ways to work around the bossy behaviour of InfoWindow?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

诗化ㄋ丶相逢 2024-08-25 19:49:04

在InfoWindow选项中,您可以通过将disableAutoPan设置为true来禁用平移,您可以在参考页面上阅读更多信息。

但也可以找到一个 InfoBox 实用程序库 这里

In the InfoWindow options you can disable the panning by setting disableAutoPan to be true, you can read more on the reference page.

But there is also a InfoBox utility library that can be found here

熊抱啵儿 2024-08-25 19:49:04

http://econym.org.uk/gmap/ebubble.htm 是我的用于 V2,当你浏览一下代码时,你会发现它相当简单,如果稍微改变一下就可以与 V3 一起使用。

希望有帮助。

http://econym.org.uk/gmap/ebubble.htm was what I used for V2 and when you glance at the code you can see it's fairly simply and may work with V3 if altered slightly.

Hope it helps.

柠檬 2024-08-25 19:49:04
var infowindow2 = new google.maps.InfoWindow({
    disableAutoPan: true
});
var infowindow2 = new google.maps.InfoWindow({
    disableAutoPan: true
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文