Layer.TileCache, Layer.TMS: support a subset of server resolutions. r=tschaub (closes #1944)

git-svn-id: http://svn.openlayers.org/trunk/openlayers@8932 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Frédéric Junod
2009-03-02 08:21:01 +00:00
parent 4dc36e4d80
commit a0678fa739
5 changed files with 70 additions and 6 deletions

View File

@@ -7,7 +7,9 @@
<script type="text/javascript">
var map, layer;
function init(){
map = new OpenLayers.Map( $('map'));
map = new OpenLayers.Map( $('map'), {
resolutions: [0.087890625, 0.0439453125, 0.02197265625, 0.010986328125]
});
layer = new OpenLayers.Layer.TileCache("TileCache Layer",
["http://c0.labs.metacarta.com/wms-c/cache/",
"http://c1.labs.metacarta.com/wms-c/cache/",
@@ -16,8 +18,11 @@
"http://c4.labs.metacarta.com/wms-c/cache/"],
"basic",
{
'format': 'image/png',
maxResolution: 180/256 // same as the TileCache config
serverResolutions: [0.703125, 0.3515625, 0.17578125, 0.087890625,
0.0439453125, 0.02197265625, 0.010986328125,
0.0054931640625, 0.00274658203125, 0.001373291015625,
0.0006866455078125, 0.00034332275390625, 0.000171661376953125,
0.0000858306884765625, 0.00004291534423828125, 0.000021457672119140625]
}
);
map.addLayer(layer);