Changeset 3281
- Timestamp:
- 06/07/07 13:16:02 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
sandbox/crschmidt/wraptheworld/lib/OpenLayers/Layer/MapServer.js
r3273 r3281 109 109 * bounds by a gutter. 110 110 */ 111 ad ustBounds: function(bounds) {111 adjustBounds: function(bounds) { 112 112 if(this.gutter) { 113 113 bounds = this.adjustBoundsByGutter(bounds); 114 114 } 115 OpenLayers.Layer.Grid.prototype.adjustBounds.apply(this, [bounds]);115 return OpenLayers.Layer.Grid.prototype.adjustBounds.apply(this, [bounds]); 116 116 }, 117 117 sandbox/crschmidt/wraptheworld/lib/OpenLayers/Layer/WMS.js
r3277 r3281 109 109 bounds = this.adjustBoundsByGutter(bounds); 110 110 } 111 OpenLayers.Layer.Grid.prototype.adjustBounds.apply(this, [bounds]);111 return OpenLayers.Layer.Grid.prototype.adjustBounds.apply(this, [bounds]); 112 112 }, 113 113
