diff options
author | Chris Schlaeger <chris@linux.com> | 2014-08-12 21:56:44 +0200 |
---|---|---|
committer | Chris Schlaeger <chris@linux.com> | 2014-08-12 21:56:44 +0200 |
commit | ea346a785dc1b3f7c156f6fc33da634e1f1a627b (patch) | |
tree | af67530553d20b6e82ad60fd79593e9c4abf5565 /misc/openlayers/examples/kinetic.js | |
parent | 59741cd535c47f25971bf8c32b25da25ceadc6d5 (diff) | |
download | postrunner-ea346a785dc1b3f7c156f6fc33da634e1f1a627b.zip |
Adding jquery, flot and openlayers to be included with the GEM.v0.0.4
Diffstat (limited to 'misc/openlayers/examples/kinetic.js')
-rw-r--r-- | misc/openlayers/examples/kinetic.js | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/misc/openlayers/examples/kinetic.js b/misc/openlayers/examples/kinetic.js new file mode 100644 index 0000000..2daca16 --- /dev/null +++ b/misc/openlayers/examples/kinetic.js @@ -0,0 +1,27 @@ +var map = new OpenLayers.Map({ + div: "map", + resolutions: [0.087890625, 0.0439453125, 0.02197265625, 0.010986328125], + controls: [ + new OpenLayers.Control.Navigation( + {dragPanOptions: {enableKinetic: true}} + ) + ] +}); +var layer = new OpenLayers.Layer.TileCache("TileCache Layer", + ["http://c0.tilecache.osgeo.org/wms-c/cache/", + "http://c1.tilecache.osgeo.org/wms-c/cache/", + "http://c2.tilecache.osgeo.org/wms-c/cache/", + "http://c3.tilecache.osgeo.org/wms-c/cache/", + "http://c4.tilecache.osgeo.org/wms-c/cache/"], + "basic", + { + serverResolutions: [0.703125, 0.3515625, 0.17578125, 0.087890625, + 0.0439453125, 0.02197265625, 0.010986328125, + 0.0054931640625, 0.00274658203125, 0.001373291015625, + 0.0006866455078125, 0.00034332275390625, 0.000171661376953125, + 0.0000858306884765625, 0.00004291534423828125, 0.000021457672119140625], + buffer: 4 + } +); +map.addLayer(layer); +map.setCenter(new OpenLayers.LonLat(0, 0), 0);
\ No newline at end of file |