summaryrefslogtreecommitdiff
path: root/misc/openlayers/examples/tilecache.html
blob: 82f3a55deb1a7bc17c2b7ee98058f0f8dbf744e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
    <meta name="apple-mobile-web-app-capable" content="yes">
    <title>OpenLayers TileCache Example</title>
    <link rel="stylesheet" href="../theme/default/style.css" type="text/css">
    <link rel="stylesheet" href="style.css" type="text/css">
    <script src="../lib/OpenLayers.js"></script>
    <script type="text/javascript">
        var map, layer;
        function init(){
            map = new OpenLayers.Map( 'map', {
                resolutions: [0.087890625, 0.0439453125, 0.02197265625, 0.010986328125]
            });
            layer = new OpenLayers.Layer.TileCache("TileCache Layer",
                ["http://c0.tilecache.osgeo.org/wms-c/cache/",
                 "http://c1.tilecache.osgeo.org/wms-c/cache/",
                 "http://c2.tilecache.osgeo.org/wms-c/cache/",
                 "http://c3.tilecache.osgeo.org/wms-c/cache/",
                 "http://c4.tilecache.osgeo.org/wms-c/cache/"],
                "basic",
                {
                    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);
            map.setCenter(new OpenLayers.LonLat(0, 0), 0);
        }
    </script>
  </head>
  <body onload="init()">
      <h1 id="title">TileCache Example</h1>

      <div id="tags">
          tile, cache, tilecache, wmsc, wms-c
      </div>

      <p id="shortdesc">
        Demonstrates a TileCache layer that loads tiles from from a web
        accessible disk-based cache only.
      </p>

    <div id="map" class="smallmap"></div>

    <div id="docs">
        <p>This layer should be used for web accessible disk-based caches only.
        It is not used to request new tiles from TileCache.  Note that you
        should specify resolutions explicitly on this layer so that they match
        your TileCache configuration.</p>
    </div>
  </body>
</html>