Taking advantage of the nice media query styles. Separating code from markup.

git-svn-id: http://svn.openlayers.org/trunk/openlayers@11261 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Tim Schaub
2011-02-22 21:21:31 +00:00
parent 406bca8d70
commit d21b7b081f
2 changed files with 50 additions and 60 deletions

28
examples/kinetic.js Normal file
View File

@@ -0,0 +1,28 @@
var map = new OpenLayers.Map({
div: "map",
resolutions: [0.087890625, 0.0439453125, 0.02197265625, 0.010986328125],
panDuration: 100,
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);