造型MarkerClusterer图标?

我正在使用MarkerCluster.js创build群集在我的谷歌地图API。 群集的工作方式,我想要他们,但我想风格不同于黄色,蓝色和红色的圆圈。 我试图使用MarkerStyleOptions,它说你有一个最小的集群图标和最大的最后一个样式的数组。 我试图在下面创build这个,但是我对使用哪种语法感到困惑,并且找不到任何好的例子。

var clusterStyles = [ [opt_textColor: 'white'], [opt_textColor: 'white'], [opt_textColor: 'white'] ]; var mcOptions = { gridSize: 50, styles: clusterStyles, maxZoom: 15 }; var markerclusterer = new MarkerClusterer(map, cluster, mcOptions); 

你需要做的是使用URL来指定使用哪个图像,而不是当前使用的蓝/黄/红图像。 也可能是一个好主意,也包括高度和宽度选项。

 var clusterStyles = [ { textColor: 'white', url: 'path/to/smallclusterimage.png', height: 50, width: 50 }, { textColor: 'white', url: 'path/to/mediumclusterimage.png', height: 50, width: 50 }, { textColor: 'white', url: 'path/to/largeclusterimage.png', height: 50, width: 50 } ]; 

发表一个相当有用的答案永远不会太晚,因此您还可以查看整个MarkerClusterer文档中的IconStyle

UPDATE

还有ehcanadian所说的github上的google maps v3实用程序