我通过以下方式创建自己的MarkerClusterGroup:

this.cluster = leaflet.markerClusterGroup({
    zoomToBoundsOnClick: false,
    showCoverageOnHover: false,
    spiderfyDistanceMultiplier: 3,
    spiderLegPolylineOptions: {
        weight: 1.5,
        color: "#1BA5D0",
        lineCap: "butt",
        dashArray: "10 10",
        opacity: 0.5
    }
});


如何为该组内的每个群集(就其实际为letlet.Marker而言)应用一些选项?特别是,我想设置riseOnHover: true

我发现有some way可以通过自定义窗格控制整个MarkerClusterGroup的定位,但这不是我的情况

最佳答案

终于,我明白了。可以在iconCreateFunction中设置选项:

this.cluster = leaflet.markerClusterGroup({
    iconCreateFunction: cluster => {
        cluster.options.riseOnHover = true;
    }
});

关于javascript - 如何在MarkerClusterGroup中设置每个集群的选项,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56279825/

10-12 01:02