diff --git a/src/viewport.js b/src/viewport.js index cb534b68..e218e3d8 100644 --- a/src/viewport.js +++ b/src/viewport.js @@ -741,18 +741,9 @@ $.Viewport.prototype = { */ // Added to improve constrained panning getConstrainedBounds: function( immediately ) { - var actualZoom = this.getZoom(), - constrainedZoom = Math.max( - Math.min( actualZoom, this.getMaxZoom() ), - this.getMinZoom() - ), - bounds, + var bounds, constrainedBounds; - if ( actualZoom != constrainedZoom ) { - this.zoomTo( constrainedZoom, this.zoomPoint, immediately ); - } - bounds = this.getBounds(); constrainedBounds = this._applyBoundaryConstraints( bounds, immediately );