Back to Devexpress

MapItemStorage.Items Property

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

latest2.1 KB
Original Source

MapItemStorage.Items Property

Returns the collection of the map items stored by this MapItemStorage.

Namespace : DevExpress.Xpf.Map

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

NuGet Package : DevExpress.Wpf.Map

Declaration

csharp
public MapVectorItemCollection Items { get; }
vb
Public ReadOnly Property Items As MapVectorItemCollection

Property Value

TypeDescription
MapVectorItemCollection

A MapVectorItemCollection that is a collection of MapItem class descendant objects.

|

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>

See Also

MapItemStorage Class

MapItemStorage Members

DevExpress.Xpf.Map Namespace