Openlayers Client - Layer corine_1990
Bounding Box
-613875.0, -1346200.0, -143625.0, -1121800.0
Level and Resolutions
Level | Resolution |
---|---|
0 | 1411.11111111 |
1 | 1058.33333333 |
2 | 705.555555556 |
3 | 529.166666667 |
4 | 352.777777778 |
5 | 264.583333333 |
6 | 176.388888889 |
7 | 88.1944444444 |
8 | 61.7361111111 |
9 | 35.2777777778 |
10 | 17.6388888889 |
11 | 8.8194444444 |
12 | 3.5277777778 |
13 | 1.7638888889 |
14 | 0.8819444444 |
JavaScript code
<script src="static/OpenLayers.js"></script> <script type="text/javascript"> var map; function init(){ var mapOptions = { projection: new OpenLayers.Projection('EPSG:102067'), maxResolution: 1411.11111111, resolutions: [1411.11111111, 1058.33333333, 705.555555556, 529.166666667, 352.777777778, 264.583333333, 176.388888889, 88.1944444444, 61.7361111111, 35.2777777778, 17.6388888889, 8.8194444444, 3.5277777778, 1.7638888889, 0.8819444444], units: 'm', numZoomLevels: 15, maxExtent: new OpenLayers.Bounds(-613875.0, -1346200.0, -143625.0, -1121800.0) }; map = new OpenLayers.Map('map', mapOptions); var layer = new OpenLayers.Layer.TMS('TMS corine_1990', '../tms/', {layername: 'corine_1990/EPSG102067', type: 'png', tileSize: new OpenLayers.Size(256, 256) }); map.addLayer(layer) map.zoomToExtent(new OpenLayers.Bounds(-613875.00, -1346200.00, -143625.00, -1121800.00)); } </script>