/opt/canhelp/node_modules/leaflet.markercluster/src
NameSizeModeActions
DistanceGrid.js23940755editdlrm
index.js3330755editdlrm
MarkerCluster.js116130755editdlrm
MarkerCluster.QuickHull.js47890755editdlrm
MarkerCluster.Spiderfier.js141700755editdlrm
MarkerClusterGroup.js410690755editdlrm
MarkerClusterGroup.Refresh.js36550755editdlrm
MarkerOpacity.js4390755editdlrm
Edit: /opt/canhelp/node_modules/leaflet.markercluster/src/MarkerOpacity.js (439B)
/* * Extends L.Marker to include two extra methods: clusterHide and clusterShow. * * They work as setOpacity(0) and setOpacity(1) respectively, but * don't overwrite the options.opacity * */ L.Marker.include({ clusterHide: function () { var backup = this.options.opacity; this.setOpacity(0); this.options.opacity = backup; return this; }, clusterShow: function () { return this.setOpacity(this.options.opacity); } });