git-svn-id: http://svn.openlayers.org/trunk/openlayers@11583 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
61 lines
2.0 KiB
HTML
61 lines
2.0 KiB
HTML
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<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 Bing Example</title>
|
|
<link rel="stylesheet" href="../theme/default/style.css" type="text/css" />
|
|
<link rel="stylesheet" href="style.css" type="text/css" />
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<script src="http://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=6.2&mkt=en-us"></script>
|
|
|
|
<script src="../lib/OpenLayers.js"></script>
|
|
<script>
|
|
|
|
var map;
|
|
|
|
function init(){
|
|
// setting restrictedExtent so that we can use the
|
|
// VirtualEarth-layers, see e.g.
|
|
// http://dev.openlayers.org/apidocs/files/OpenLayers/Layer/VirtualEarth-js.html
|
|
var restrictedExtent = new OpenLayers.Bounds(-180, -90,
|
|
180, 90);
|
|
|
|
map = new OpenLayers.Map("map");
|
|
|
|
map.addControl(new OpenLayers.Control.LayerSwitcher());
|
|
|
|
var shaded = new OpenLayers.Layer.VirtualEarth("Shaded", {
|
|
type: VEMapStyle.Shaded
|
|
});
|
|
var hybrid = new OpenLayers.Layer.VirtualEarth("Hybrid", {
|
|
type: VEMapStyle.Hybrid
|
|
});
|
|
var aerial = new OpenLayers.Layer.VirtualEarth("Aerial", {
|
|
type: VEMapStyle.Aerial
|
|
});
|
|
|
|
map.addLayers([shaded, hybrid, aerial]);
|
|
|
|
map.setCenter(new OpenLayers.LonLat(-110, 45), 3);
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="init()">
|
|
<h1 id="title">Bing Example</h1>
|
|
|
|
<div id="tags">
|
|
Bing, Microsoft, Virtual Earth
|
|
</div>
|
|
|
|
<p id="shortdesc">
|
|
Demonstrates the use of Bing layers.
|
|
</p>
|
|
|
|
<div id="map" class="smallmap"></div>
|
|
<div id="docs">This example demonstrates the ability to create layers using tiles from Bing maps.</div>
|
|
</body>
|
|
</html>
|
|
|
|
|