Openlayers Client - Layer euromed_2013

Coordinate SystemImage format
png

Bounding Box

-1600072.75, -1349979.75, 5600000.0, 5850093.0

Level and Resolutions

LevelResolution
028125.2841796875
114062.642089843746
27031.321044921872
33515.6605224609357
41757.8302612304678
5878.9151306152339
6439.45756530761696
7219.72878265380848
8109.86439132690424
954.93219566345212
1027.46609783172606
1113.73304891586303
126.866524457931515
133.4332622289657575
141.7166311144828788
150.8583155572414394
160.4291577786207197
170.21457888931035984
180.10728944465517992
190.05364472232758996

JavaScript code

<script src="static/OpenLayers.js"></script>
<script type="text/javascript">
var map;
function init(){
    var mapOptions = {
    projection: new OpenLayers.Projection('EPSG:7777777'),
    maxResolution: 28125.2841796875,
    resolutions: [28125.2841796875, 14062.642089843746, 7031.321044921872,
3515.6605224609357, 1757.8302612304678, 878.9151306152339, 439.45756530761696,
219.72878265380848, 109.86439132690424, 54.93219566345212, 27.46609783172606,
13.73304891586303, 6.866524457931515, 3.4332622289657575, 1.7166311144828788,
0.8583155572414394, 0.4291577786207197, 0.21457888931035984, 0.10728944465517992,
0.05364472232758996],
    units: 'm',
    numZoomLevels: 20,
    maxExtent: new OpenLayers.Bounds(-1600072.75, -1349979.75, 5600000.0, 5850093.0)
    };

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

    var layer = new OpenLayers.Layer.TMS('TMS euromed_2013', '../tms/',
        {layername: 'euromed_2013/EPSG7777777', type: 'png',
         tileSize: new OpenLayers.Size(256, 256)
    });

    map.addLayer(layer)
    map.zoomToExtent(new OpenLayers.Bounds(-1600072.75, -1349979.75, 5600000.00,
5850093.00));
}
</script>