Openlayers Client - Layer osm

Coordinate SystemImage format
png

Bounding Box

200000.0, 6000000.0, 600000.0, 6400000.0

Level and Resolutions

LevelResolution
01562.5
1781.25
2390.625
3195.3125
497.65625
548.828125
624.4140625
712.20703125
86.103515625
93.0517578125
101.52587890625
110.762939453125
120.3814697265625
130.19073486328125
140.095367431640625
150.0476837158203125
160.02384185791015625
170.011920928955078125
180.0059604644775390625
190.0029802322387695312
200.0014901161193847656

JavaScript code

<script src="static/OpenLayers.js"></script>
<script type="text/javascript">
var map;
function init(){
    var mapOptions = {
    projection: new OpenLayers.Projection('EPSG:32637'),
    maxResolution: 1562.5,
    resolutions: [1562.5, 781.25, 390.625, 195.3125, 97.65625, 48.828125, 24.4140625,
12.20703125, 6.103515625, 3.0517578125, 1.52587890625, 0.762939453125, 0.3814697265625,
0.19073486328125, 0.095367431640625, 0.0476837158203125, 0.02384185791015625,
0.011920928955078125, 0.0059604644775390625, 0.0029802322387695312,
0.0014901161193847656],
    units: 'm',
    numZoomLevels: 21,
    maxExtent: new OpenLayers.Bounds(200000.0, 6000000.0, 600000.0, 6400000.0)
    };

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

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

    map.addLayer(layer)
    map.zoomToExtent(new OpenLayers.Bounds(200000.00, 6000000.00, 600000.00, 6400000.00));
}
</script>