我正在寻找 Google Maps v3 的 InfoWindow 替代品。我想用它来弹出标记鼠标悬停。标准的 InfoWindow 完全无法使用,因为它会平移并使自己变得讨厌。Google Maps v2 具有出色的 GxMarker(不适用于新 API):http ://code.toeat.com/gxmarker.html
有谁知道 Google Maps v3 的类似插件,或其他解决 InfoWindow 专横行为的方法?
我正在寻找 Google Maps v3 的 InfoWindow 替代品。我想用它来弹出标记鼠标悬停。标准的 InfoWindow 完全无法使用,因为它会平移并使自己变得讨厌。Google Maps v2 具有出色的 GxMarker(不适用于新 API):http ://code.toeat.com/gxmarker.html
有谁知道 Google Maps v3 的类似插件,或其他解决 InfoWindow 专横行为的方法?
在 InfoWindow 选项中,您可以通过将 disableAutoPan 设置为 true 来禁用平移,您可以在参考页面上阅读更多信息。
但也有一个 InfoBox 实用程序库,可以在这里找到
var infowindow2 = new google.maps.InfoWindow({
disableAutoPan: true
});
http://econym.org.uk/gmap/ebubble.htm是我在 V2 中使用的,当您查看代码时,您会发现它相当简单,如果稍作改动,可能与 V3 一起使用。
希望能帮助到你。