MarkerClusterer - 关联数组

时间:2013-07-15 19:54:59

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

MarkerClusterer适用于数值数组,但您是否尝试将其与标记对象一起使用?我的意思是关联数组,因为我将所有标记保留在这种数组中。只有我想到的是将相关数组转换为“异常”数组,但这个解决方案看起来很奇怪。我知道可能是不可能的,但也许有人有解决方法。

2 个答案:

答案 0 :(得分:1)

您可以向MarkerClusterer添加标记数组,也可以单独添加它们(它们 不在数组中)。在创建MarkerClusterer时将其添加到MarkerClusterer并将它们添加到“关联”数组/对象中。

请参阅addMarker method in the documentation

答案 1 :(得分:0)

Google Maps API v3

MarkerClusterer(map:google.maps.Map, opt_markers:Array.<google.maps.Marker>, opt_options:Object)

请注意:     的 opt_markers:阵列

这意味着你应该只使用数组!根据这个,只需将您的对象发送到普通的数字数组。