VashJuan wroteDon't know if you are including support (at least yet) for these Microsoft Mapping APIs (which replace MapPoint) but thought it might be helpful.
- J
Juste create an html file using the MSDN article as a starter. Save the file (map.html) to your site and use the IFrame module to show the map.html
That is all I did at
liffeydescent.com The code is as simple as:
<code>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Programming Virtual Earth</title>
<script src="http://dev.virtualearth.net/mapcontrol/v3/MapControl.js"></script>
</head>
<body MS_POSITIONING="GridLayout">
<div id="mymapcontroldiv" style="position:relative;width:800px;height:600px;"></div>
<script>
var map = new VEMap("mymapcontroldiv");
map.LoadMap(new VELatLong(53.3500, -6.5000), // Centre point
11, // Zoom Level
VEMapStyle.Road, // Map Style
false) // Static Map
;
var startPin = new VEPushpin("1", //id
new VELatLong(53.3075, -6.6298),
null,
"K Club, Straffan",
"Liffey Descent, Race Start");
map.AddPushpin(startPin);
</script>
</body>
</html>
</code>