-
Name Type Description conditionCondition | undefined A function that takes a
MapBrowserEventand returns a boolean to indicate whether that event will be considered to add or move a vertex to the sketch. Default isprimaryAction.deleteConditionCondition | undefined A function that takes a
MapBrowserEventand returns a boolean to indicate whether that event should be handled. By default,singleClickwithaltKeyOnlyresults in a vertex deletion.insertVertexConditionCondition | undefined A function that takes a
MapBrowserEventand returns a boolean to indicate whether a new vertex should be added to the sketch features. Default isalways.pixelTolerancenumber (defaults to 10) Pixel tolerance for considering the pointer close enough to a segment or vertex for editing.
styleStyleLike | FlatStyleLike | undefined Style used for the modification point or vertex. For linestrings and polygons, this will be the affected vertex, for circles a point along the circle, and for points the actual point. If not configured, the default edit style is used (see
Style). When using a style function, the point feature passed to the function will have afeaturesproperty - an array whose entries are the features that are being modified, and ageometriesproperty - an array whose entries are the geometries that are being modified. Both arrays are in the same order. Thegeometriesare only useful when modifying geometry collections, where the geometry will be the particular geometry from the collection that is being modified.sourceVectorSource | undefined The vector source with features to modify. If a vector source is not provided, a feature collection must be provided with the
featuresoption.hitDetectionboolean | BaseVectorLayer | undefined When configured, point features will be considered for modification based on their visual appearance, instead of being within the
pixelTolerancefrom the pointer location. When aBaseVectorLayeris provided, only the rendered representation of the features on that layer will be considered.featuresCollection<Feature> | undefined The features the interaction works on. If a feature collection is not provided, a vector source must be provided with the
sourceoption.wrapXboolean (defaults to false) Wrap the world horizontally on the sketch overlay.
snapToPointerboolean (defaults to !hitDetection) The vertex, point or segment being modified snaps to the pointer coordinate when clicked within the
pixelTolerance.Fires:
-
change(BaseEvent) - Generic change event. Triggered when the revision counter is increased. -
change:active(ObjectEvent) -
error(BaseEvent) - Generic error event. Triggered when an error occurs. -
modifyend(ModifyEvent) - Triggered upon feature modification end -
modifystart(ModifyEvent) - Triggered upon feature modification start -
propertychange(ObjectEvent) - Triggered when a property is changed.
-
Extends
Observable Properties
| Name | Type | Settable | ObjectEvent type | Description |
|---|---|---|---|---|
active |
boolean | yes | change:active |
|
Methods
-
Increases the revision counter and dispatches a 'change' event.
-
Dispatches an event and calls all listeners listening for events of this type. The event parameter can either be a string or an Object with a
typeproperty.Name Type Description eventBaseEvent | string Event object.
Returns:
falseif anyone called preventDefault on the event object or if any of the listeners returned false.
-
Gets a value.
Name Type Description keystring Key name.
Returns:
Value.
-
Return whether the interaction is currently active.
Returns:
trueif the interaction is active,falseotherwise.
-
Get a list of object property names.
Returns:
List of property names.
-
Get the map associated with this interaction.
Returns:
Map.
-
Get the overlay layer that this interaction renders the modification point or vertex to.
Returns:
Overlay layer.
-
Returns the current number of pointers involved in the interaction, e.g.
2when two fingers are used.Returns:
The number of pointers.
-
Get an object of all property names and values.
Returns:
Object.
-
Get the version number for this object. Each time the object is modified, its version number will be incremented.
Returns:
Revision.
-
Listen for a certain type of event.
Name Type Description typestring | Array.<string> The event type or array of event types.
listenerfunction The listener function.
Returns:
Unique key for the listener. If called with an array of event types as the first argument, the return will be an array of keys.
-
Listen once for a certain type of event.
Name Type Description typestring | Array.<string> The event type or array of event types.
listenerfunction The listener function.
Returns:
Unique key for the listener. If called with an array of event types as the first argument, the return will be an array of keys.
-
Removes the vertex currently being pointed.
Returns:
True when a vertex was removed.
-
Sets a value.
Name Type Description keystring Key name.
value* Value.
silentboolean | undefined Update without triggering an event.
-
Activate or deactivate the interaction.
Name Type Description activeboolean Active.
-
Sets a collection of key-value pairs. Note that this changes any existing properties and adds new ones (it does not remove any existing properties).
Name Type Description valuesObject.<string, *> Values.
silentboolean | undefined Update without triggering an event.
-
Unlisten for a certain type of event.
Name Type Description typestring | Array.<string> The event type or array of event types.
listenerfunction The listener function.
-
Unsets a property.
Name Type Description keystring Key name.
silentboolean | undefined Unset without triggering an event.