ABMaterial allows you to use the potential of Google Maps in a simple way.

// create the google map
Dim gm1 As ABMGoogleMap
gm1.Initialize(page, "gm1", 50.8500, 2.8833, 15, 350, ABM.GOOGLEMAPTYPE_ROADMAP)
gm1.Draggable = True
gm1.HasMapTypeControl = True
gm1.HasStreetViewControl = True
gm1.HasZoomControl = True
gm1.AddMapType(ABM.GOOGLEMAPTYPE_ROADMAP)
gm1.AddMapType(ABM.GOOGLEMAPTYPE_TERRAIN)
gm1.AddMapType(ABM.GOOGLEMAPTYPE_HYBRID)
gm1.AddMapType(ABM.GOOGLEMAPTYPE_SATELLITE)

page.Cell(2,1).AddComponent(gm1)

You can also create a 'panorama' view.

// create the panorama
Dim gm2 As ABMGoogleMap
gm2.InitializeAsPanorama(page, "gm2", 50.8500, 2.8833, 1, 300, 45, 0)

page.Cell(11,1).AddComponent(gm2)