我想在集群组上收听spiderfied 和unspiderfied 事件。此处描述了这些事件。我有以下代码,我无法收听事件。请帮助。
var markerGroup = L.markerClusterGroup();
//adding markers to markerGroup
// ...
markerGroup.on('spiderfied', function (a) {
// a.layer is actually a cluster
console.log('cluster ' + a.layer.getAllChildMarkers().length);
});
markerGroup.on('clusterspiderfied', function (a) {
// a.layer is actually a cluster
console.log('cluster ' + a.layer.getAllChildMarkers().length);
});
编辑:添加小提琴