new Draw(options)
| Name | Type | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options |
Options.
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||
Fires:
-
change(module:ol/events/Event~BaseEvent) - Generic change event. Triggered when the revision counter is increased. -
change:active(module:ol/Object.ObjectEvent) -
drawabort(module:ol/interaction/Draw~DrawEvent) - Triggered upon feature draw abortion -
drawend(module:ol/interaction/Draw~DrawEvent) - Triggered upon feature draw end -
drawstart(module:ol/interaction/Draw~DrawEvent) - Triggered upon feature draw start -
error(module:ol/events/Event~BaseEvent) - Generic error event. Triggered when an error occurs. -
propertychange(module:ol/Object.ObjectEvent) - Triggered when a property is changed.
Extends
Observable Properties
| Name | Type | Settable | ol/Object.ObjectEvent type | Description |
|---|---|---|---|---|
active |
boolean | yes | change:active |
|
Methods
-
abortDrawing()
interaction/Draw.js, line 913 -
Stop drawing without adding the sketch feature to the target layer.
-
appendCoordinates(coordinates)
interaction/Draw.js, line 930 -
Append coordinates to the end of the geometry that is currently being drawn. This can be used when drawing LineStrings or Polygons. Coordinates will either be appended to the current LineString or the outer ring of the current Polygon.
Name Type Description coordinatesmodule:ol/interaction/Draw~LineCoordType Linear coordinates to be appended into the coordinate array.
-
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 eventmodule:ol/events/Event~BaseEvent | string Event object.
Returns:
falseif anyone called preventDefault on the event object or if any of the listeners returned false.
-
extend(feature)
interaction/Draw.js, line 963 -
Initiate draw mode by starting from an existing geometry which will receive new additional points. This only works on features with
LineStringgeometries, where the interaction will extend lines by adding points to the end of the coordinates array. This will change the original feature, instead of drawing a copy.The function will dispatch a
drawstartevent.Name Type Description featuremodule:ol/Feature~Feature.<module:ol/geom/LineString~LineString> Feature to be extended.
-
finishDrawing()
interaction/Draw.js, line 854 -
Stop drawing and add the sketch feature to the target layer. The
module:ol/interaction/Draw~DrawEventType.DRAWENDevent is dispatched before inserting the feature. -
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 sketch features 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.
-
on(type, listener){module:ol/events~EventsKey|Array.<module:ol/events~EventsKey>} inherited
Observable.js, line 60 -
Listen for a certain type of event.
Name Type Description typestring | Array.<string> The event type or array of event types.
listenermodule:ol/events~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.
-
once(type, listener){module:ol/events~EventsKey|Array.<module:ol/events~EventsKey>} inherited
Observable.js, line 82 -
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.
-
removeLastPoint()
interaction/Draw.js, line 817 -
Remove last point of the feature currently being drawn.
-
Sets a value.
Name Type Description keystring Key name.
value* Value.
silentboolean 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 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 Unset without triggering an event.
OpenLayers