diff options
Diffstat (limited to 'misc/openlayers/examples/tile-origin.js')
-rw-r--r-- | misc/openlayers/examples/tile-origin.js | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/misc/openlayers/examples/tile-origin.js b/misc/openlayers/examples/tile-origin.js deleted file mode 100644 index 61c5b8e..0000000 --- a/misc/openlayers/examples/tile-origin.js +++ /dev/null @@ -1,16 +0,0 @@ -var map = new OpenLayers.Map({ - div: "map", - maxExtent: new OpenLayers.Bounds(-130, 30, -80, 55), - maxResolution: 360 / 256 / Math.pow(2, 4), - numZoomLevels: 12, - layers: [ - new OpenLayers.Layer.WMS( - "Global Imagery", - "http://maps.opengeo.org/geowebcache/service/wms", - {layers: "bluemarble"}, - {tileOrigin: new OpenLayers.LonLat(-180, -90)} - ) - ], - center: new OpenLayers.LonLat(-110, 45), - zoom: 0 -}); |