]> dev.renevier.net Git - syp.git/blob - openlayers/examples/wms.html
initial commit
[syp.git] / openlayers / examples / wms.html
1 <html xmlns="http://www.w3.org/1999/xhtml">
2   <head>
3     <link rel="stylesheet" href="../theme/default/style.css" type="text/css" />
4     <link rel="stylesheet" href="style.css" type="text/css" />
5     <script src="../lib/OpenLayers.js"></script>
6     <script type="text/javascript">
7         var lon = 5;
8         var lat = 40;
9         var zoom = 5;
10         var map, layer;
11
12         function init(){
13             map = new OpenLayers.Map( 'map' );
14             layer = new OpenLayers.Layer.WMS( "OpenLayers WMS",
15                     "http://labs.metacarta.com/wms/vmap0", {layers: 'basic'} );
16             map.addLayer(layer);
17
18             map.setCenter(new OpenLayers.LonLat(lon, lat), zoom);
19             map.addControl( new OpenLayers.Control.LayerSwitcher() );
20         }
21     </script>
22   </head>
23   <body onload="init()">
24     <h1 id="title">WMS Example</h1>
25
26     <div id="tags">
27     </div>
28     <p id="shortdesc">
29         Shows the basic use of openlayers using a WMS layer
30     </p>
31
32     <div id="map" class="smallmap"></div>
33
34     <div id="docs">
35         This is an example of how to add an WMS layer to the OpenLayers window. The images are tiled in this instance if you wanted to not use a tiled WMS
36         please use this example and pass the option \91singleTile\92 as true.
37     </div>
38   </body>
39 </html>
40
41
42
43