标记群集器-合并标记信息窗口内容

| 有没有人知道如何将信息窗口添加到群集标记中,其中包含合并的标记信息窗口内容? 这是默认标记群集器行为之一: http://www.psop.fr/MAP_Population_Google.php 谢谢     
已邀请:
您应该在markercluster上监听clusterclick事件。传递到事件中的对象包含一组在群集中以及群集位置的标记。     
google.maps.event.addListener(markerCluster, \'clusterclick\', function(cluster) {
    markers = cluster.getMarkers();
    info = \"\";
    $.each(markers, function(x, marker) {
        if(me.infowindows[marker.__gm_id]){
        info = info + \"<br/>\" + me.infowindows[marker.__gm_id].content;
            }
    });
..... 类似的方法可以使您获得与clusterclick相关的标记。然后循环浏览信息窗口,我不确定您的设置方式。但是上面的代码应该有意义。 您还需要禁用点击缩放,因为每次缩放都会重新绘制群集。     
var contentString = \'This is an example\';
var infowindow = new google.maps.InfoWindow({
    content: contentString
});

google.maps.event.addListener(marker, \'click\', function() {
  infowindow.open(map,marker);
});
    

要回复问题请先登录注册