Provides a map-actions.Action to start a feature update workflow using the Editing widget.

interface StartEditingMapAction {
    id: string;
    immediate?: boolean;
    trigger(options?: StartEditingMapActionOptions): Promise<void>;
}

Hierarchy (View Summary)

Properties

Methods

Properties

id: string

Unique id of this action.

immediate?: boolean

Actions are executed one by one. This flag allows to run an action independently of all other actions.

Methods