Openlayers Client - Layer OSMCartoV4LabelsEL

Coordinate SystemImage format
png

Bounding Box

-180.0, -90.0, 180.0, 90.0

Level and Resolutions

LevelResolution
00.3515625
10.17578125
20.087890625
30.0439453125
40.02197265625
50.010986328125
60.0054931640625
70.00274658203125
80.00137329101562
90.000686645507812
100.000343322753906
110.000171661376953
128.58306884766e-05
134.29153442383e-05
142.14576721191e-05
151.07288360596e-05
165.36441802979e-06
172.68220901489e-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.3515625,
    units: 'degree',
    numZoomLevels: 18,
    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 OSMCartoV4LabelsEL', '../tms/',
        {layername: 'OSMCartoV4LabelsEL/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>