Openlayers Client - Layer PUSZTAZAMORORTO

Coordinate SystemImage format
png

Bounding Box

627550.0, 225000.0, 632100.0, 230800.0

Level and Resolutions

LevelResolution
016.0
18.0
24.0
32.0
41.0
50.5
60.25
70.125
80.0625

JavaScript code

<script src="static/OpenLayers.js"></script>
<script type="text/javascript">
var map;
function init(){
    var mapOptions = {
    projection: new OpenLayers.Projection('EPSG:23700'),
    maxResolution: 16.0,
    resolutions: [16.0, 8.0, 4.0, 2.0, 1.0, 0.5, 0.25, 0.125, 0.0625],
    units: 'm',
    numZoomLevels: 9,
    maxExtent: new OpenLayers.Bounds(627550.0, 225000.0, 632100.0, 230800.0)
    };

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

    var layer = new OpenLayers.Layer.TMS('TMS PUSZTAZAMORORTO', '../tms/',
        {layername: 'PUSZTAZAMORORTO/Pusztazamor', type: 'png',
         tileSize: new OpenLayers.Size(512, 512)
    });

    map.addLayer(layer)
    map.zoomToExtent(new OpenLayers.Bounds(627550.00, 225000.00, 632100.00, 230800.00));
}
</script>