Add feeback form/layar API
[bus.git] / openlayers / examples / ve.html
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
59
60
61
62
63
64
65
66
67
68
69
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
      <title>OpenLayers Virtual Earth Example</title>
    <link rel="stylesheet" href="../theme/default/style.css" type="text/css" />
    <link rel="stylesheet" href="style.css" type="text/css" />
    <script src='http://dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=6.1'></script>
 
    <script src="../lib/OpenLayers.js"></script>
    <script type="text/javascript">
 
        var lon = 5;
        var lat = 40;
        var zoom = 15;
        var map, velayer, layer;
 
        function init(){
            map = new OpenLayers.Map( 'map' ,
            {controls:[new OpenLayers.Control.MouseDefaults()]});
 
            velayer = new OpenLayers.Layer.VirtualEarth( "VE",
            { minZoomLevel: 4, maxZoomLevel: 6, 'type': VEMapStyle.Aerial});
            map.addLayer(velayer);
 
            var twms = new OpenLayers.Layer.WMS( "World Map",
                        "http://world.freemap.in/cgi-bin/mapserv?",
                        { map: '/www/freemap.in/world/map/factbooktrans.map',
                          transparent:'true',
                          layers: 'factbook',
                          'format':'png'},
                          {'reproject': true});
            map.addLayer(twms);
 
            markers = new OpenLayers.Layer.Markers("markers");
            map.addLayer(markers);
 
            map.setCenter(new OpenLayers.LonLat(lon, lat), zoom);
            map.addControl( new OpenLayers.Control.LayerSwitcher() );
            map.addControl( new OpenLayers.Control.PanZoomBar() );
        }
 
        function add() {
 
            marker = new OpenLayers.Marker(new OpenLayers.LonLat(2, 41));
            markers.addMarker(marker);
        }
 
        function remove() {
            markers.removeMarker(marker);
        }
    </script>
  </head>
  <body onload="init()">
    <h1 id="title">Virtual Earth Example</h1>
 
    <div id="tags"></div>
 
    <p id="shortdesc">
        Demonstrates the use of a Virtual Earth base layer.
    </p>
 
    <div id="map" class="smallmap"></div>
    <input type="button" onClick="javascript:add()"value="Add the marker from the map">
    <input type="button" onClick="javascript:remove()" value="Remove the marker from the map">
    <div id="docs">This example demonstrates the ability to add VirtualEarth and the and remove markers.</div>
  </body>
</html>