Openlayers Client - Layer WorldOceanReference

Coordinate SystemImage format
png

Bounding Box

-20037508.342789244, -20037508.342789244, 20037508.342789244, 20037508.342789244

Level and Resolutions

LevelResolution
078271.51696402048
139135.75848201024
219567.87924100512
39783.93962050256
44891.96981025128
52445.98490512564
61222.99245256282
7611.49622628141
8305.748113140705
9152.8740565703525

JavaScript code

<script src="static/OpenLayers.js"></script>
<script type="text/javascript">
var map;
function init(){
    var mapOptions = {
    projection: new OpenLayers.Projection('EPSG:900913'),
    maxResolution: 78271.51696402048,
    units: 'm',
    numZoomLevels: 10,
    maxExtent: new OpenLayers.Bounds(-20037508.342789244, -20037508.342789244,
20037508.342789244, 20037508.342789244)
    };

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

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

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