Openlayers Client - Layer ortho_2022

Coordinate SystemImage format
jpeg

Bounding Box

-20037508.3428, -20037508.3428, 20037508.3428, 20037508.3428

Level and Resolutions

LevelResolution
078271.516964
139135.758482
219567.879241
39783.9396205
44891.96981025
52445.98490513
61222.99245256
7611.496226281
8305.748113141
9152.87405657
1076.4370282852
1138.2185141426
1219.1092570713
139.55462853565
144.77731426782
152.38865713391
161.19432856696
170.597164283478
180.298582141739
190.149291070869
200.0746455354347

JavaScript code

<script src="static/OpenLayers.js"></script>
<script type="text/javascript">
var map;
function init(){
    var mapOptions = {
    projection: new OpenLayers.Projection('EPSG:3857'),
    maxResolution: 78271.516964,
    units: 'm',
    numZoomLevels: 21,
    maxExtent: new OpenLayers.Bounds(-20037508.3428, -20037508.3428, 20037508.3428,
20037508.3428)
    };

    map = new OpenLayers.Map('map', mapOptions);

    var layer = new OpenLayers.Layer.TMS('TMS ortho_2022', '../tms/',
        {layername: 'ortho_2022/GLOBAL_WEBMERCATOR_4_V3', type: 'jpeg',
         tileSize: new OpenLayers.Size(256, 256)
    });

    map.addLayer(layer)
    map.zoomToExtent(new OpenLayers.Bounds(636757.68, 6349503.39, 728716.39, 6478379.90));
}
</script>