Openlayers Client - Layer orkamv-ohnetext
Bounding Box
-464849.38, 5057815.86858, 787494.891424, 6310160.14
Level and Resolutions
Level | Resolution |
---|---|
0 | 4891.96981025 |
1 | 2445.98490513 |
2 | 1222.99245256 |
3 | 611.496226281 |
4 | 305.748113141 |
5 | 152.87405657 |
6 | 76.4370282852 |
7 | 38.2185141426 |
8 | 19.1092570713 |
9 | 9.5546285356 |
10 | 4.7773142678 |
11 | 2.3886571339 |
12 | 1.194328567 |
13 | 0.5971642835 |
14 | 0.2985821417 |
JavaScript code
<script src="static/OpenLayers.js"></script> <script type="text/javascript"> var map; function init(){ var mapOptions = { projection: new OpenLayers.Projection('EPSG:25833'), maxResolution: 4891.96981025, resolutions: [4891.96981025, 2445.98490513, 1222.99245256, 611.496226281, 305.748113141, 152.87405657, 76.4370282852, 38.2185141426, 19.1092570713, 9.5546285356, 4.7773142678, 2.3886571339, 1.194328567, 0.5971642835, 0.2985821417], units: 'm', numZoomLevels: 15, maxExtent: new OpenLayers.Bounds(-464849.38, 5057815.86858, 787494.891424, 6310160.14) }; map = new OpenLayers.Map('map', mapOptions); var layer = new OpenLayers.Layer.TMS('TMS orkamv-ohnetext', '../tms/', {layername: 'orkamv-ohnetext/EPSG25833', type: 'png', tileSize: new OpenLayers.Size(256, 256) }); map.addLayer(layer) map.zoomToExtent(new OpenLayers.Bounds(160696.27, 5816652.03, 500000.00, 6106230.44)); } </script>