A simple Virtual Earth module has been posted on the downloads section.
It basically shows how to wire up a special javasscript onload event that you put in your module ascx file.
The simple steps to start are:
1) Create a Module and put javascript in to reference Microsofts VE library
<___script type="text/javascript" src="http://dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=5"><____/script>
2) create a div that will will hold the Virtual Earth Map
3) Add the Javascript onload Function that will create and dsiplay your map
var map = null;var lat = 41.500548;var lon = -72.206397;var zoom = 12;function myOnPageLoad()new VEMap('myMap');new VELatLong(lat, lon), zoom, "r", false);
4) on your modules onload event wireup your onload event from the ascx file
DotNetNuke.UI.Utilities.
DNNClientAPI.AddBodyOnloadEventHandler(Page, "myOnPageLoad();");