Changeset 1304
- Timestamp:
- 08/18/06 22:53:50 (2 years ago)
- Files:
-
- branches/openlayers/2.0/lib/OpenLayers/Map.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/openlayers/2.0/lib/OpenLayers/Map.js
r1302 r1304 807 807 */ 808 808 zoomTo: function(zoom) { 809 this.setCenter(null, zoom); 809 if (this.isValidZoomLevel(zoom)) { 810 this.setCenter(null, zoom); 811 } 810 812 }, 811 813
