Client side:
This sample displays a google map. Click buttons below to switch between different Google maps.


Server side: protected void Page_Load(object sender, EventArgs e) { if (!Page.IsPostBack) { FullMapView.MapBackground.BackgroundBrush = new GeoSolidBrush(GeoColor.FromHtml("#E5E3DF")); FullMapView.CurrentExtent = new RectangleShape(-13939426.6371, 6701997.4056, -7812401.86, 2626987.386962); FullMapView.MapUnit = GeographyUnit.Meter; FullMapView.MapTools.OverlaySwitcher.Enabled = true; FullMapView.MapTools.MouseCoordinate.Enabled = true; GoogleOverlay google = new GoogleOverlay("Google Map"); google.JavaScriptLibraryUri = new Uri(ConfigurationManager.AppSettings["GoogleUriV3"]); google.GoogleMapType = GoogleMapType.Normal; google.IsVisibleInOverlaySwitcher = true; google.IsBaseOverlay = true; FullMapView.CustomOverlays.Add(google); } }