Skip to main content
A newer version of this page is available. .

MiniMapVectorLayer.Data Property

Gets or sets the data of the VectorLayer.

Namespace: DevExpress.Xpf.Map

Assembly: DevExpress.Xpf.Map.v21.2.dll

NuGet Package: DevExpress.Wpf.Map

Declaration

public MapDataAdapterBase Data { get; set; }

Property Value

Type Description
MapDataAdapterBase

A MapDataAdapterBase class descendant object.

Remarks

This property is ContentProperty attribute value.

Example

View 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