Back to Devexpress

VectorLayer.Data Property

wpf-devexpress-dot-xpf-dot-map-dot-vectorlayer.md

latest3.0 KB
Original Source

VectorLayer.Data Property

Specifies the data source for the vector items layer.

Namespace : DevExpress.Xpf.Map

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

NuGet Package : DevExpress.Wpf.Map

Declaration

csharp
public MapDataAdapterBase Data { get; set; }
vb
Public Property Data As MapDataAdapterBase

Property Value

TypeDescription
MapDataAdapterBase

A MapDataAdapterBase class descendant object.

|

Example

To manually generate vector items do the following.

xaml
<dxm:VectorLayer.Data>
    <dxm:MapItemStorage>
        <dxm:MapItemStorage.Items>
            <dxm:MapDot Location="51.30, 0.07" Size="20" Fill="Wheat"/>
            <dxm:MapDot Location="52.31, 13.23" Size="20" Fill="Gold"/>
            <dxm:MapDot Location="48.51, 2.21" Size="20" Fill="CadetBlue"/>
            <dxm:MapDot Location="41.54, 12.3" Size="20" Fill="Red"/>
            <dxm:MapDot Location="40.23, -3.43" Size="20" Fill="Green"/>
        </dxm:MapItemStorage.Items>
    </dxm:MapItemStorage>
</dxm:VectorLayer.Data>

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Data property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

wpf-map-use-ray-casting-algorithm-to-check-if-point-is-inside-polygon/CS/DXMapShapeFile1/MainWindow.xaml#L8

xml
<dxm:VectorLayer Name="vectorLayer" MouseDoubleClick="vLayer_MouseDoubleClick" EnableSelection="False" >
    <dxm:VectorLayer.Data >
        <dxm:ShapefileDataAdapter FileUri="DXMapShapeFile1;component/ShapeFile/Countries.shp" />

See Also

VectorLayer Class

VectorLayer Members

DevExpress.Xpf.Map Namespace