Openlayers Client - Layer Eyevi_eesti_2026
Bounding Box
-211000.0, 5732000.0, 1325000.0, 7268000.0
Level and Resolutions
| Level | Resolution |
|---|---|
| 0 | 6000.0 |
| 1 | 3000.0 |
| 2 | 1500.0 |
| 3 | 750.0 |
| 4 | 375.0 |
| 5 | 187.5 |
| 6 | 93.75 |
| 7 | 46.875 |
| 8 | 23.4375 |
| 9 | 11.71875 |
| 10 | 5.859375 |
| 11 | 2.9296875 |
| 12 | 1.46484375 |
| 13 | 0.732421875 |
| 14 | 0.3662109375 |
| 15 | 0.18310546875 |
| 16 | 0.091552734375 |
| 17 | 0.0457763671875 |
| 18 | 0.0228881835938 |
| 19 | 0.0114440917969 |
| 20 | 0.00572204589844 |
| 21 | 0.00286102294922 |
JavaScript code
<script src="static/OpenLayers.js"></script>
<script type="text/javascript">
var map;
function init(){
var mapOptions = {
projection: new OpenLayers.Projection('EPSG:3301'),
maxResolution: 6000.0,
resolutions: [6000.0, 3000.0, 1500.0, 750.0, 375.0, 187.5, 93.75, 46.875, 23.4375,
11.71875, 5.859375, 2.9296875, 1.46484375, 0.732421875, 0.3662109375, 0.18310546875,
0.091552734375, 0.0457763671875, 0.0228881835938, 0.0114440917969, 0.00572204589844,
0.00286102294922],
units: 'm',
numZoomLevels: 22,
maxExtent: new OpenLayers.Bounds(-211000.0, 5732000.0, 1325000.0, 7268000.0)
};
map = new OpenLayers.Map('map', mapOptions);
var layer = new OpenLayers.Layer.TMS('TMS Eyevi_eesti_2026', '../tms/',
{layername: 'Eyevi_eesti_2026/EPSG3301', type: 'png',
tileSize: new OpenLayers.Size(256, 256)
});
map.addLayer(layer)
map.zoomToExtent(new OpenLayers.Bounds(350000.00, 6300000.00, 770000.00, 6700000.00));
}
</script>