Google Maps MarkerClusterer忽略了几种样式属性

时间:2014-03-31 15:24:12

标签: javascript css google-maps google-maps-api-3 markerclusterer

我使用Google Maps MarkerClusterer来聚集地图标记(谁会想到!)。我遇到的问题是,某些样式属性不会影响标记。

这里列出了所有可以使用的属性http://google-maps-utility-library-v3.googlecode.com/svn/trunk/markerclustererplus/docs/reference.html

属性heighttextSizetextColorurlwidth可以正常运行。但是当试图改变fontWeight时没有任何反应。我已经用这些电影试过了。

var styles = [[{
    url: imagePath,
    width: x,
    height: y,
    anchor: [0, 0],
    textColor: '#ffffff',
    textSize: 20,
    fontWeight: 100 // as well as `fontWeight: 'normal'`

}]];

但仍然没有变化。还有其他人有同样的问题吗?

1 个答案:

答案 0 :(得分:0)

在文档中,它说fontWeight值必须是一个字符串,但是你要发送一个数字。你能试试fontWeight: '100'吗?