Leaflet Markercluster: Exempt marker from clustering
问题 How can one exampt a marker with open popup from collapsing into a cluster when zooming out? I am using leaflet and markercluster as set up in this example: HTML: <div id="map"></div> CSS: html, body { height: 100%; } #map { height: 100%; } JS: const map = L.map('map', { zoom: 5, center: [0,0], maxZoom: 18 }); const clustered = L.markerClusterGroup(); map.addLayer(clustered); const m1 = L.marker(L.latLng(0,0)); m1.addTo(clustered); m1.bindPopup('one'); const m2 = L.marker(L.latLng(0,1)); m2