GGroundOverlay
Con el GGroundOverlay se pueden insertar imágenes a los mapas de forma muy sencilla.
Basta con definir la imageUrl y el GLatLngBounds y... ¡ya está!
Code.aspx
<cc1:GMap ID="GMap1" runat="server" />
Code.aspx.cs
GLatLng sw = new GLatLng(64,20);
GLatLng ne = new GLatLng(65,29);
GMap1.setCenter((sw / 2) + (ne / 2));
GGroundOverlay groundOverlay = new GGroundOverlay("http://googlemaps.subgurim.net/images/logo.jpg", new GLatLngBounds(sw, ne));
GMap1.addGroundOverlay(groundOverlay);