当鼠标移到javascript中时,使信息窗口消失

时间:2018-09-02 19:25:01

标签: javascript html

将光标移到笔尖上时,我需要在笔尖上显示其位置。 当我在标记上移动时,它会显示位置。当我离开时,信息窗口不会消失。那令人困惑。我的代码可能有问题。代码是:

    function moveInfoWindow(marker, message) {

        var moveWindow = new google.maps.InfoWindow({
            content: message
        });

        google.maps.event.addListener(marker, 'mouseover', function() {
            moveWindow.open(map, marker);
        });
        google.maps.event.addListener(marker, 'mouseout', function() {
            moveWindow.close();
        });
    }

具有以下结果:

enter image description here

1 个答案:

答案 0 :(得分:0)

尝试像这样更改代码:

main()