Openlayers Client - Layer crawfordcowi_layer

Coordinate SystemImage format
png

Bounding Box

130000.0, -20000.0, 618000.0, 376000.0

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:103411'),
    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(130000.0, -20000.0, 618000.0, 376000.0)
    };

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

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

    map.addLayer(layer)
    map.zoomToExtent(new OpenLayers.Bounds(130000.00, -20000.00, 618000.00, 376000.00));
}
</script>