-
Name Type Description optionsOptions.
Name Type Description typemodule:ol/geom/GeometryType Geometry type of the geometries being drawn with this instance.
clickTolerancenumber (defaults to 6) The maximum distance in pixels between "down" and "up" for a "up" event to be considered a "click" event and actually add a point/vertex to the geometry being drawn. The default of
6was chosen for the draw interaction to behave correctly on mouse as well as on touch devices.featuresmodule:ol/Collection~Collection.<module:ol/Feature~Feature> Destination collection for the drawn features.
sourcemodule:ol/source/Vector~VectorSource Destination source for the drawn features.
dragVertexDelaynumber (defaults to 500) Delay in milliseconds after pointerdown before the current vertex can be dragged to its exact position.
snapTolerancenumber (defaults to 12) Pixel distance for snapping to the drawing finish. Must be greater than
0.stopClickboolean (defaults to false) Stop click, singleclick, and doubleclick events from firing during drawing.
maxPointsnumber The number of points that can be drawn before a polygon ring or line string is finished. By default there is no restriction.
minPointsnumber The number of points that must be drawn before a polygon ring or line string can be finished. Default is
3for polygon rings and2for line strings.finishConditionmodule:ol/events/condition~Condition A function that takes an
module:ol/MapBrowserEvent~MapBrowserEventand returns a boolean to indicate whether the drawing can be finished. Not used when drawing POINT or MULTI_POINT geometries.stylemodule:ol/style/Style~StyleLike Style for sketch features.
geometryFunctionmodule:ol/interaction/Draw~GeometryFunction Function that is called when a geometry's coordinates are updated.
geometryNamestring Geometry name to use for features created by the draw interaction.
conditionmodule:ol/events/condition~Condition A function that takes an
module:ol/MapBrowserEvent~MapBrowserEventand returns a boolean to indicate whether that event should be handled. By defaultmodule:ol/events/condition~noModifierKeys, i.e. a click, adds a vertex or deactivates freehand drawing.freehandboolean (defaults to false) Operate in freehand mode for lines, polygons, and circles. This makes the interaction always operate in freehand mode and takes precedence over any
freehandConditionoption.freehandConditionmodule:ol/events/condition~Condition Condition that activates freehand drawing for lines and polygons. This function takes an
module:ol/MapBrowserEvent~MapBrowserEventand returns a boolean to indicate whether that event should be handled. The default ismodule:ol/events/condition~shiftKeyOnly, meaning that the Shift key activates freehand drawing.wrapXboolean (defaults to false) Wrap the world horizontally on the sketch overlay.
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
-
Stop drawing without adding the sketch feature to the target layer.
-
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. If no geometry is being drawn, a new one will be created.
Name Type Description coordinatesmodule:ol/interaction/Draw~LineCoordType Linear coordinates to be appended to 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.
-
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.
-
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.
-
Handles the
map browser eventand may actually draw or finish the drawing.Name Type Description eventmodule:ol/MapBrowserEvent~MapBrowserEvent Map browser event.
Returns:
falseto stop event propagation.
-
on(type, listener){module:ol/events~EventsKey|Array.<module:ol/events~EventsKey>} inherited
-
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.
-
once(type, listener){module:ol/events~EventsKey|Array.<module:ol/events~EventsKey>} inherited
-
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.
-
Remove last point of the feature currently being drawn. Does not do anything when drawing POINT or MULTI_POINT geometries.
-
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