A newer version of this page is available.
Switch to the current version.
LayerCollection Class
A collection of layers.
Namespace: DevExpress.Xpf.Map
Assembly: DevExpress.Xpf.Map.v18.2.dll
Declaration
public class LayerCollection :
MapElementCollection<LayerBase>
Public Class LayerCollection
Inherits MapElementCollection(Of LayerBase)
Related API Members
The following members accept/return LayerCollection objects:
Examples
This example demonstrates how to connect to the Bing Maps web service using the BingMapDataProvider object.
Note that if you run this sample as is, you will get a warning message saying that the specified Bing Maps key is invalid. To learn more about Bing Map keys, please refer to the How to: Get a Bing Maps Key tutorial.
NOTE
A complete sample project is available at https://github.com/DevExpress-Examples/dxmap-getting-started-lesson-1-connect-to-bing-maps-e3606.
<Window xmlns:dxm="http://schemas.devexpress.com/winfx/2008/xaml/map"
x:Class="Wpf_MapControl_Lesson1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Grid>
<dxm:MapControl CenterPoint="45,18" ZoomLevel="4" >
<dxm:MapControl.MiniMap>
<dxm:MiniMap Alignment="TopRight">
<dxm:MiniMap.Behavior>
<dxm:FixedMiniMapBehavior CenterPoint="45, 18"/>
</dxm:MiniMap.Behavior>
<dxm:MiniMapImageTilesLayer>
<dxm:BingMapDataProvider BingKey="YOUR BING KEY"/>
</dxm:MiniMapImageTilesLayer>
</dxm:MiniMap>
</dxm:MapControl.MiniMap>
<dxm:ImageLayer>
<dxm:ImageLayer.DataProvider>
<dxm:BingMapDataProvider BingKey="YOUR BING KEY"/>
</dxm:ImageLayer.DataProvider>
</dxm:ImageLayer>
</dxm:MapControl>
</Grid>
</Window>
Inheritance
See Also
Feedback