Openlayers Client - Layer ortho_2010

Coordinate SystemImage format
png

Bounding Box

48000.0, 57000.0, 107000.0, 139000.0

Level and Resolutions

LevelResolution
0500
1250
2150
3100
450
520
610
75
82.0
91.0
100.5

JavaScript code

<script src="static/OpenLayers.js"></script>
<script type="text/javascript">
var map;
function init(){
    var mapOptions = {
    projection: new OpenLayers.Projection('EPSG:2169'),
    maxResolution: 500,
    resolutions: [500, 250, 150, 100, 50, 20, 10, 5, 2.0, 1.0, 0.5],
    units: 'm',
    numZoomLevels: 11,
    maxExtent: new OpenLayers.Bounds(48000.0, 57000.0, 107000.0, 139000.0)
    };

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

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

    map.addLayer(layer)
    map.zoomToExtent(new OpenLayers.Bounds(48000.00, 57000.00, 107000.00, 139000.00));
}
</script>