This example demonstrates how to disable all default cluster behaviors and implement manual spiderfying. All automatic features are turned off, giving you full control over cluster interactions.
let markers = new L.MarkerClusterGroup({
spiderfyOnMaxZoom: false,
showCoverageOnHover: false,
zoomToBoundsOnClick: false
});
// Manually trigger spiderfy
cluster.spiderfy();
Features: