Openlayers Client - Layer Schallschutz

Coordinate SystemImage format
png

Bounding Box

3456665.0, 5870740.0, 3500219.0, 5919944.0

Level and Resolutions

LevelResolution
065.0
132.5
216.25
38.125
44.0625
52.03125
61.015625
70.5078125
80.25390625
90.126953125
100.0634765625
110.03173828125
120.015869140625
130.0079345703125
140.00396728515625
150.00198364257812
160.000991821289062
170.000495910644531
180.000247955322266
190.000123977661133

JavaScript code

<script src="static/OpenLayers.js"></script>
<script type="text/javascript">
var map;
function init(){
    var mapOptions = {
    projection: new OpenLayers.Projection('EPSG:31467'),
    maxResolution: 65.0,
    resolutions: [65.0, 32.5, 16.25, 8.125, 4.0625, 2.03125, 1.015625, 0.5078125,
0.25390625, 0.126953125, 0.0634765625, 0.03173828125, 0.015869140625, 0.0079345703125,
0.00396728515625, 0.00198364257812, 0.000991821289062, 0.000495910644531,
0.000247955322266, 0.000123977661133],
    units: 'm',
    numZoomLevels: 20,
    maxExtent: new OpenLayers.Bounds(3456665.0, 5870740.0, 3500219.0, 5919944.0)
    };

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

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

    map.addLayer(layer)
    map.zoomToExtent(new OpenLayers.Bounds(3456665.00, 5870740.00, 3500219.00,
5919944.00));
}
</script>