
Mehr Informationen gibt es auf folgenden Sites:
|
|
Seit Ende April 2007 steht der Virtual Earth Map Control SDK 5.0 zur Verfügung. "So spread the news" und einfach mal eine Map in die eigene Website eingebaut:
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <script src= "http://dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=5"></script> <script> var map; function OnPageLoad() { map = new VEMap('myMap'); map.LoadMap(); map.SetScaleBarDistanceUnit(VEDistanceUnit.Kilometers); map.ShowFindControl(); map.Find(null,'Konrad-Zuse-Str. 1, 85716 Unterschleissheim, Germany',null,null,0,null,null,null,null,null, ResultsFound); } function ResultsFound(e) { var latLong = map.GetCenter(); var pin = new VEShape(VEShapeType.Pushpin, latLong); pin.SetTitle('Microsoft Deutschland GmbH'); pin.SetDescription('Konrad-Zuse-Strasse 1<br>D 85716 Unterschleissheim'); pin.SetMoreInfoURL('http://www.microsoft.com/germany/'); map.AddShape(pin); } </script> <body onload="OnPageLoad();"> <div id="myMap" style= "position:relative;width:650px;height:400px;"></div> </body> </html>
|