Openlayers Client - Layer ortho_2019_luref

Coordinate SystemImage format
jpeg

Bounding Box

48000.0, 57000.0, 107000.0, 139000.0

Level and Resolutions

LevelResolution
0320.3125
1160.15625
280.078125
340.0390625
420.01953125
510.009765625
65.0048828125
72.50244140625
81.25122070312
90.625610351562
100.312805175781
110.156402587891
120.0782012939453
130.0391006469727
140.0195503234863
150.00977516174316
160.00488758087158
170.00244379043579
180.0012218952179
190.000610947608948
200.000305473804474
210.000152736902237

JavaScript code

<script src="static/OpenLayers.js"></script>
<script type="text/javascript">
var map;
function init(){
    var mapOptions = {
    projection: new OpenLayers.Projection('EPSG:2169'),
    maxResolution: 320.3125,
    resolutions: [320.3125, 160.15625, 80.078125, 40.0390625, 20.01953125, 10.009765625,
5.0048828125, 2.50244140625, 1.25122070312, 0.625610351562, 0.312805175781,
0.156402587891, 0.0782012939453, 0.0391006469727, 0.0195503234863, 0.00977516174316,
0.00488758087158, 0.00244379043579, 0.0012218952179, 0.000610947608948, 0.000305473804474,
0.000152736902237],
    units: 'm',
    numZoomLevels: 22,
    maxExtent: new OpenLayers.Bounds(48000.0, 57000.0, 107000.0, 139000.0)
    };

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

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

    map.addLayer(layer)
    map.zoomToExtent(new OpenLayers.Bounds(48000.00, 57000.00, 107000.00, 139000.00));
}
</script>