-
Name Type Description options
Options.
Name Type Description type
module:ol/geom/GeometryType Geometry type of the geometries being drawn with this instance.
clickTolerance
number (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
6
was chosen for the draw interaction to behave correctly on mouse as well as on touch devices.features
module:ol/Collection~Collection.<module:ol/Feature~Feature> Destination collection for the drawn features.
source
module:ol/source/Vector~VectorSource Destination source for the drawn features.
dragVertexDelay
number (defaults to 500) Delay in milliseconds after pointerdown before the current vertex can be dragged to its exact position.
snapTolerance
number (defaults to 12) Pixel distance for snapping to the drawing finish. Must be greater than
0
.stopClick
boolean (defaults to false) Stop click, singleclick, and doubleclick events from firing during drawing.
maxPoints
number The number of points that can be drawn before a polygon ring or line string is finished. By default there is no restriction.
minPoints
number The number of points that must be drawn before a polygon ring or line string can be finished. Default is
3
for polygon rings and2
for line strings.finishCondition
module:ol/events/condition~Condition A function that takes an
module:ol/MapBrowserEvent~MapBrowserEvent
and returns a boolean to indicate whether the drawing can be finished. Not used when drawing POINT or MULTI_POINT geometries.style
module:ol/style/Style~StyleLike Style for sketch features.
geometryFunction
module:ol/interaction/Draw~GeometryFunction Function that is called when a geometry's coordinates are updated.
geometryName
string Geometry name to use for features created by the draw interaction.
condition
module:ol/events/condition~Condition A function that takes an
module:ol/MapBrowserEvent~MapBrowserEvent
and 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.freehand
boolean (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
freehandCondition
option.freehandCondition
module:ol/events/condition~Condition Condition that activates freehand drawing for lines and polygons. This function takes an
module:ol/MapBrowserEvent~MapBrowserEvent
and 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.wrapX
boolean (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 coordinates
module: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
type
property.Name Type Description event
module:ol/events/Event~BaseEvent | string Event object.
Returns:
false
if 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
LineString
geometries, 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
drawstart
event.Name Type Description feature
module: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.DRAWEND
event is dispatched before inserting the feature. -
Gets a value.
Name Type Description key
string Key name.
Returns:
Value.
-
Return whether the interaction is currently active.
Returns:
true
if the interaction is active,false
otherwise.
-
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.
2
when 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 event
and may actually draw or finish the drawing.Name Type Description event
module:ol/MapBrowserEvent~MapBrowserEvent Map browser event.
Returns:
false
to 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 type
string | Array.<string> The event type or array of event types.
listener
function 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 type
string | Array.<string> The event type or array of event types.
listener
function 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 key
string Key name.
value
* Value.
silent
boolean Update without triggering an event.
-
Activate or deactivate the interaction.
Name Type Description active
boolean 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 values
Object.<string, *> Values.
silent
boolean Update without triggering an event.
-
Unlisten for a certain type of event.
Name Type Description type
string | Array.<string> The event type or array of event types.
listener
function The listener function.
-
Unsets a property.
Name Type Description key
string Key name.
silent
boolean Unset without triggering an event.