Change icon of google map marker when onmouseover div (Google maps v3 api)

前端 未结 3 1712
陌清茗
陌清茗 2021-01-06 13:42

How do i change the icon of a marker on google maps when I mouseover the text in a div? I managed to change the marker icon onmouseover the marker in the map itself using

3条回答
  •  我在风中等你
    2021-01-06 14:34

    google.maps.event.addListener(marker1, 'mouseover', function () {
        marker1.setIcon('miniMarker.png');                      
     });
    

    first call initialize function, define marker1 and then use this code, You can also call this function from different ways like you want on div mouse over etc.

提交回复
热议问题