Openlayers Client - Layer cadastre3

Coordinate SystemImage format
png

Bounding Box

-180.0, -90.0, 180.0, 90.0

Level and Resolutions

LevelResolution
00.7031249999999999
10.3515624999999999
20.17578124999999992
30.08789062499999994
40.043945312499999965
50.02197265624999998
60.010986328124999988
70.005493164062499993
80.002746582031249996
90.0013732910156249978
100.0006866455078124988
110.00034332275390624935
120.00017166137695312465
138.583068847656231e-05
144.291534423828115e-05
152.145767211914057e-05
161.0728836059570284e-05
175.364418029785141e-06
182.68220901489257e-06

JavaScript code

<script src="static/OpenLayers.js"></script>
<script type="text/javascript">
var map;
function init(){
    var mapOptions = {
    projection: new OpenLayers.Projection('EPSG:4326'),
    maxResolution: 0.7031249999999999,
    units: 'degree',
    numZoomLevels: 19,
    maxExtent: new OpenLayers.Bounds(-180.0, -90.0, 180.0, 90.0)
    };

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

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

    map.addLayer(layer)
    map.zoomToExtent(new OpenLayers.Bounds(-180.00, -90.00, 180.00, 90.00));
}
</script>