Openlayers Client - Layer EXTIGHSites

Coordinate SystemImage format
png

Bounding Box

421849.81, 518361.28, 768347.28, 968015.39

Level and Resolutions

LevelResolution
01756.46136719
1878.230683594
2439.115341797
3219.557670898
4109.778835449
554.8894177246
627.4447088623
713.7223544312
86.86117721558
93.43058860779
101.71529430389
110.857647151947
120.428823575974

JavaScript code

<script src="static/OpenLayers.js"></script>
<script type="text/javascript">
var map;
function init(){
    var mapOptions = {
    projection: new OpenLayers.Projection('EPSG:2157'),
    maxResolution: 1756.46136719,
    resolutions: [1756.46136719, 878.230683594, 439.115341797, 219.557670898,
109.778835449, 54.8894177246, 27.4447088623, 13.7223544312, 6.86117721558, 3.43058860779,
1.71529430389, 0.857647151947, 0.428823575974],
    units: 'm',
    numZoomLevels: 13,
    maxExtent: new OpenLayers.Bounds(421849.81, 518361.28, 768347.28, 968015.39)
    };

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

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

    map.addLayer(layer)
    map.zoomToExtent(new OpenLayers.Bounds(421849.81, 518361.28, 768347.28, 968015.39));
}
</script>