我使用gmaps.js显示带有一些标记的简单地图,但是我希望显示infowindows有鼠标悬停,我无法找到如何做到这一点。 我的代码:
map = new GMaps({
scrollwheel: false,
div: '#gmap',
lat: -12,
lng: -77,
});
map.addMarker({
lat: -12,
lng: -77,
title: 'test',
infoWindow:{
content: '<p>HTML Content</p>'
},
mouseover: function(e){
this['infowindow'].open(map, this);
}
});
答案 0 :(得分:5)
mouseover: function(e){
this.infoWindow.open(this.map, this);
}