MiniMapVectorLayer.Data Property
In This Article
Gets or sets the data of the VectorLayer.
Namespace: DevExpress.Xpf.Map
Assembly: DevExpress.Xpf.Map.v24.2.dll
NuGet Package: DevExpress.Wpf.Map
#Declaration
public MapDataAdapterBase Data { get; set; }
#Property Value
Type | Description |
---|---|
Map |
A Map |
#Remarks
This property is ContentProperty attribute value.
#Example
<dxm:MiniMapVectorLayer ShapeFill="#FF4AD4FF">
<dxm:ListSourceDataAdapter
DataSource="{Binding Source={StaticResource dataSource}, XPath=Ship}">
<dxm:ListSourceDataAdapter.Mappings>
<dxm:MapItemMappingInfo Latitude="Latitude" Longitude="Longitude"/>
</dxm:ListSourceDataAdapter.Mappings>
<dxm:ListSourceDataAdapter.ItemSettings>
<dxm:MapDotSettings Size="10"/>
</dxm:ListSourceDataAdapter.ItemSettings>
</dxm:ListSourceDataAdapter>
</dxm:MiniMapVectorLayer>
See Also