diff --git a/src/MarkerCluster.Spiderfier.js b/src/MarkerCluster.Spiderfier.js index 50d1c0a6f..2a1a6f476 100644 --- a/src/MarkerCluster.Spiderfier.js +++ b/src/MarkerCluster.Spiderfier.js @@ -353,10 +353,9 @@ L.MarkerClusterGroup.include({ if (this._map.options.zoomAnimation) { this._map.on('zoomstart', this._unspiderfyZoomStart, this); - } else { - //Browsers without zoomAnimation don't fire zoomstart - this._map.on('zoomend', this._unspiderfyWrapper, this); } + //Browsers without zoomAnimation or a big zoom don't fire zoomstart + this._map.on('zoomend', this._noanimationUnspiderfy, this); if (L.Path.SVG && !L.Browser.touch) { this._map._initPathRoot();