我正在使用Google Maps API创建一个Web视图页面。我已经完成了实施,但我有一个关于标记群集选项的问题,该选项未被更新。
这是CDN
<script src="https://unpkg.com/@googlemaps/markerclusterer@latest"></script>
这是我的代码
markers.push(marker);
const clusterStyles = [
{
url: 'https://developers.google.com/maps/documentation/javascript/examples/clusterer/m3.png',
textColor: 'white',
textSize: 14,
width: 50,
height: 50,
},
];
const clusterOptions = {
styles: clusterStyles,
gridSize: 50,
maxZoom: 15,
minimumClusterSize: 3,
};
const markerCluster = new markerClusterer.MarkerClusterer({ map, markers, clusterOptions });
google.maps.event.addListener(markers, 'clusterclick', onClusterClick);
i预期颜色更改为标记群集实际控制群集选项
1条答案
按热度按时间hxzsmxv21#
我成功地定制了一个标记聚类器的标记,如下所示:
请参见下面的完整示例。