google map API v3 change marker icon on click?

前端 未结 3 1097
误落风尘
误落风尘 2021-02-07 08:02

Following google documentation up to changing the marker icon was easy. But I\'m stuck, I don\'t know how to change image when marker is clicked?

My code so far:

3条回答
  •  轮回少年
    2021-02-07 08:17

    I have modified the previous fiddle and enabled to deselect the marker.

    http://jsfiddle.net/zsw76pq9/

    google.maps.event.addListener( map,'click', function () {
        infoWindow.close();
    
        //Change the marker icon
        marker.setIcon('https://www.google.com/mapfiles/marker_black.png');
    });
    

提交回复
热议问题