Openlayers Client - Layer stcroixcowi_WROC_12_in_(2010)_layer

Coordinate SystemImage format
jpeg

Bounding Box

431318.158335895, 243471.555525014, 739815.33730378, 484596.329049176

Level and Resolutions

LevelResolution
0651.0416666666665
1564.2361111111111
2477.4305555555556
3390.62500000000006
4303.8194444444444
5217.01388888888889
6130.20833333333334
786.80555555555554
869.44444444444444
943.40277777777777
1030.381944444444443
1121.701388888888886
1215.190972222222221
138.680555555555555
146.510416666666666
154.340277777777778
163.472222222222222
172.6041666666666665
181.736111111111111
190.8680555555555555
200.43402777777777773
210.1736111111111111

JavaScript code

<script src="static/OpenLayers.js"></script>
<script type="text/javascript">
var map;
function init(){
    var mapOptions = {
    projection: new OpenLayers.Projection('EPSG:103459'),
    maxResolution: 651.0416666666665,
    resolutions: [651.0416666666665, 564.2361111111111, 477.4305555555556,
390.62500000000006, 303.8194444444444, 217.01388888888889, 130.20833333333334,
86.80555555555554, 69.44444444444444, 43.40277777777777, 30.381944444444443,
21.701388888888886, 15.190972222222221, 8.680555555555555, 6.510416666666666,
4.340277777777778, 3.472222222222222, 2.6041666666666665, 1.736111111111111,
0.8680555555555555, 0.43402777777777773, 0.1736111111111111],
    units: 'm',
    numZoomLevels: 22,
    maxExtent: new OpenLayers.Bounds(431318.158335895, 243471.555525014, 739815.33730378,
484596.329049176)
    };

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

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

    map.addLayer(layer)
    map.zoomToExtent(new OpenLayers.Bounds(431318.16, 243471.56, 739815.34, 484596.33));
}
</script>