forked from stamen/modestmaps-js
-
Notifications
You must be signed in to change notification settings - Fork 73
Open
Labels
Description
Would it be appropriate to add map.setPanLimits? In a way, it would be the other half of map.setZoomRange.
Something like:
setPanLimits: function(locations) {
if (locations instanceof MM.Extent) {
locations = locations.toArray();
}
this.coordLimits = [
locations[0].zoomTo(this.coordLimits[0].zoom),
locations[1].zoomTo(this.coordLimits[1].zoom)
];
return this;
}