Hi Guys
I was just given this link and think its worth a look if you have not seen it before.
http://earth.google.com/
kev
I was just given this link and think its worth a look if you have not seen it before.
http://earth.google.com/
kev
<html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <script src="http://dev.virtualearth.net/mapcontrol/v3/mapcontrol.js"></script> <script> var map = null; function GetMap() { map = new VEMap('myMap'); map.LoadMap(); } function FindLoc() { map.FindLocation(document.getElementById('txtWhere').value); } </script> </head> <body onload="GetMap();"> <div id='myMap' style="position:relative; width:800px; height:600px;"></div> <INPUT id="txtWhere" type="text" name="txtWhere"> <INPUT id="find" type="button" value="Find" name="find" onclick="FindLoc();"> </body> </html>