1 |
3032
|
perry
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
2 |
|
|
<head>
|
3 |
|
|
<meta http-equiv="imagetoolbar" content="no"> <!--ie image gizmo OFF!-->
|
4 |
|
|
<style type="text/css">
|
5 |
|
|
#map {
|
6 |
|
|
width: 512px;
|
7 |
|
|
height: 512px;
|
8 |
|
|
border: 1px solid black;
|
9 |
|
|
}
|
10 |
|
|
</style>
|
11 |
|
|
<script src="../lib/OpenLayers.js"></script>
|
12 |
|
|
<script type="text/javascript">
|
13 |
|
|
<!--
|
14 |
|
|
var map, layer;
|
15 |
|
|
|
16 |
|
|
function init(){
|
17 |
|
|
OpenLayers.ProxyHost="/proxy/?url=";
|
18 |
|
|
map = new OpenLayers.Map('map');
|
19 |
|
|
layer = new OpenLayers.Layer.WMS( "OpenLayers WMS",
|
20 |
|
|
"http://labs.metacarta.com/wms/vmap0", {layers: 'basic'} );
|
21 |
|
|
map.addLayer(layer);
|
22 |
|
|
|
23 |
|
|
layer = new OpenLayers.Layer.WFS( "Owl Survey",
|
24 |
|
|
"http://www.bsc-eoc.org/cgi-bin/bsc_ows.asp?",
|
25 |
|
|
{typename: "OWLS", maxfeatures: 10},
|
26 |
|
|
{ featureClass: OpenLayers.Feature.WFS});
|
27 |
|
|
map.addLayer(layer);
|
28 |
|
|
map.addControl(new OpenLayers.Control.LayerSwitcher());
|
29 |
|
|
map.setCenter(new OpenLayers.LonLat(-100, 60), 3);
|
30 |
|
|
}
|
31 |
|
|
// -->
|
32 |
|
|
</script>
|
33 |
|
|
</head>
|
34 |
|
|
<body onload="init()">
|
35 |
|
|
<h1>OpenLayers Example</h1>
|
36 |
|
|
<div id="map"></div>
|
37 |
|
|
</body>
|
38 |
|
|
</html>
|