4
如何動態更改用於Google Maps V3的Marker Clusterer Plus中特定羣集的圖標?Marker Clusterer Plus更改懸停圖標
標記似乎沒有公開任何方法來修改它們。我需要做這樣的事情(或同等的事情)。
google.maps.event.addListener(markerCluster, "mouseover", function (cluster) {
cluster.setIcon(hoverIcon);
});
google.maps.event.addListener(markerCluster, "mouseout", function (cluster) {
cluster.setIcon(normalIcon);
});
到庫「Marker Clusterer Plus」的鏈接不起作用。你能提供鏈接嗎? – mistletoe
這可能是這樣的:https://github.com/googlemaps/v3-utility-library/tree/master/markerclustererplus – Nicolas
好的。非常感謝! – mistletoe