Leaflet文档概述了一种使用iconCreateFunction指定MarkerClusterGroup的方法,您可以在其中自定义群集图标的外观。我想知道是否有通过angular-leaflet指令公开的东西也可以执行此操作,或者是否有一种方法可以使用指令降低到较低级别的Leaflet API进行操作。基本上,我只是尝试更改颜色更改的值,而不是10和100,我也希望更改图标的直径为不同的值。与Google MarkerClusterer类似。

谢谢

最佳答案

在您指定标记集群的叠加层中,可以添加选项。就像是:

layerOptions: {
                            showCoverageOnHover: false,
                            disableClusteringAtZoom: 12,
                            iconCreateFunction: function (cluster) {
                                    var childCount = cluster.getChildCount();

                                    var c = ' marker-cluster-';
                                    if (childCount < 10) {
                                        c += 'small';
                                    } else if (childCount < 100) {
                                        c += 'medium';
                                    } else {
                                        c += 'large';
                                    }

                                    return new L.DivIcon({ html: '<div><span>' + "CUSTOM" + '</span></div>', className: 'marker-cluster' + c, iconSize: new L.Point(40, 40) });
                                }
                        }

10-06 07:32