gmaps.js mouseover open infowindow

时间:2014-10-14 16:09:13

标签: javascript jquery google-maps gmaps.js

我使用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); 
    }
});

1 个答案:

答案 0 :(得分:5)

            mouseover: function(e){
                this.infoWindow.open(this.map, this);
            }