Assembly: ESRI.ArcGISExplorer (in ESRI.ArcGISExplorer.dll) Version: 2.0.0.900 (2.0.0.900)
Syntax
Remarks
The Basemap contains one or more layers that are displayed as a single entity underneath all other layers in a map. The background layers provide context when working with other items in a map, such as layers and notes.
ArcGIS Explorer comes preconfigured with basemaps for ArcGIS Online and Bing map services. Static initializers on this class return a Basemap instance for each preconfigured service. Alternatively you can create your own Basemap using a map file (.nmf) that contains one or more layers.
The Map.Basemap property allows you to access or change the maps current Basemap. To remove all background layers from the map set the property to nullNothingnullptra null reference (Nothing in Visual Basic).
The map has a ChildItems property that stores map content in a MapItemCollection. Although Basemap derives from MapItem, it cannot be added to a MapItemCollection like other MapItem types; doing so will result in an ArgumentException.
Examples

//Set the basemap property of the map to use ArcGIS Online Political boundaries
Map map = ESRI.ArcGISExplorer.Application.Application.ActiveMapDisplay.Map;
map.Basemap = Basemap.ArcGISOnline.PoliticalBoundaries;

'Set the basemap property of the map to use ArcGIS Online Political boundaries Dim map As Map = ESRI.ArcGISExplorer.Application.Application.ActiveMapDisplay.Map map.Basemap = Basemap.ArcGISOnline.PoliticalBoundaries