MiniMapVectorLayer.Data Property
Gets or sets the data of the VectorLayer.
Namespace: DevExpress.Xpf.Map
Assembly: DevExpress.Xpf.Map.v24.1.dll
NuGet Package: DevExpress.Wpf.Map
Declaration
Property Value
Type | Description |
---|---|
MapDataAdapterBase | A MapDataAdapterBase class descendant object. |
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