Openlayers Client - Layer sazp_tm10_1957_1971

Coordinate SystemImage format
png

Bounding Box

-613875.0, -1346200.0, -143625.0, -1121800.0

Level and Resolutions

LevelResolution
01411.11111111
11058.33333333
2705.555555556
3529.166666667
4352.777777778
5264.583333333
6176.388888889
788.1944444444
861.7361111111
935.2777777778
1017.6388888889
118.8194444444
123.5277777778
131.7638888889
140.8819444444

JavaScript code

<script src="static/OpenLayers.js"></script>
<script type="text/javascript">
var map;
function init(){
    var mapOptions = {
    projection: new OpenLayers.Projection('EPSG:5514'),
    maxResolution: 1411.11111111,
    resolutions: [1411.11111111, 1058.33333333, 705.555555556, 529.166666667,
352.777777778, 264.583333333, 176.388888889, 88.1944444444, 61.7361111111, 35.2777777778,
17.6388888889, 8.8194444444, 3.5277777778, 1.7638888889, 0.8819444444],
    units: 'm',
    numZoomLevels: 15,
    maxExtent: new OpenLayers.Bounds(-613875.0, -1346200.0, -143625.0, -1121800.0)
    };

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

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

    map.addLayer(layer)
    map.zoomToExtent(new OpenLayers.Bounds(-613875.00, -1346200.00, -143625.00,
-1121800.00));
}
</script>