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

MapItemStorage Class

The data adapter that stores manually added vector items.

Namespace: DevExpress.Xpf.Map

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

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Map, DevExpress.Wpf.Map

Declaration

public class MapItemStorage :
    MapDataAdapterBase

Example

To manually generate vector items do the following.

View Example

<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 snippets (auto-collected from DevExpress Examples) contain references to the MapItemStorage class.

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.

See Also