Merge pull request #1612 from twpayne/fix-view2d-fit-extent

Ensure that entire extent is visible in ol.View2D#fitExtent
This commit is contained in:
Tom Payne
2014-01-28 11:24:12 -08:00

View File

@@ -419,8 +419,12 @@ ol.View2D.prototype.fitExtent = function(extent, size) {
if (!ol.extent.isEmpty(extent)) {
this.setCenter(ol.extent.getCenter(extent));
var resolution = this.getResolutionForExtent(extent, size);
resolution = this.constrainResolution(resolution, 0, 0);
this.setResolution(resolution);
var constrainedResolution = this.constrainResolution(resolution, 0, 0);
if (constrainedResolution < resolution) {
constrainedResolution =
this.constrainResolution(constrainedResolution, -1, 0);
}
this.setResolution(constrainedResolution);
}
};