我正在寻找Google地图v3的InfoWindow替代品。我想用它来弹出标记鼠标悬停。标准的InfoWindow完全无法使用,因为它平移并使自己成为一个麻烦。 Google Maps v2拥有出色的GxMarker(不适用于新API):http://code.toeat.com/gxmarker.html
有没有人知道Google Maps v3的类似插件,或其他解决InfoWindow专横行为的方法?
答案 0 :(得分:4)
在InfoWindow选项中,您可以通过将disableAutoPan设置为true来禁用平移,您可以在参考页面上阅读更多内容。
但是还有一个InfoBox实用程序库,可以找到here
答案 1 :(得分:0)
http://econym.org.uk/gmap/ebubble.htm是我用于V2的,当你浏览代码时,你可以看到它相当简单,如果略有改变,可以使用V3。
希望它有所帮助。
答案 2 :(得分:0)
var infowindow2 = new google.maps.InfoWindow({
disableAutoPan: true
});