Back to Devexpress

MapEditor Class

wpf-devexpress-dot-xpf-dot-map-9ccd5647.md

latest3.0 KB
Original Source

MapEditor Class

The Vector Item Editor.

Namespace : DevExpress.Xpf.Map

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

NuGet Package : DevExpress.Wpf.Map

Declaration

csharp
[NonCategorized]
public class MapEditor :
    MapDependencyObject,
    IOwnedElement,
    IMapEditor,
    ISimplifiableItemsHolderProvider
vb
<NonCategorized>
Public Class MapEditor
    Inherits MapDependencyObject
    Implements IOwnedElement,
               IMapEditor,
               ISimplifiableItemsHolderProvider

The following members return MapEditor objects:

Remarks

The Map Editor allows end users to add, remove and modify vector items.

The Map Control displays the Editor Panel when the Editor is assigned to the Map Control. The MapEditor.EditorPanelOptions property manages the content the panel displays:

The Map Editor supports four modes that allow the Editor to apply different changes. The MapEditor.Mode property specifies the current editor mode.

The following code enables the Editor, specifies its default mode, and changes the Editor Panel’s location:

<dxm:MapControl>
    <dxm:MapControl.MapEditor>
        <dxm:MapEditor ActiveLayer="{Binding ElementName=vectorLayer}"
                       ActiveItems="{Binding ItemsOnEdit}">
            <dxm:MapEditor.Mode>
                <dxm:MapEditorEditMode/>
            </dxm:MapEditor.Mode>
            <dxm:MapEditor.EditorPanelOptions>
                <dxm:MapEditorPanelOptions VerticalAlignment="Bottom" Margin="8"/>
            </dxm:MapEditor.EditorPanelOptions>
        </dxm:MapEditor>
    </dxm:MapControl.MapEditor>
    <!-- Other Map Control's settings. -->
</dxm:MapControl>

Inheritance

Object DispatcherObject DependencyObject Freezable MapDependencyObject MapEditor

See Also

MapEditor Members

Vector Item Editor

DevExpress.Xpf.Map Namespace