new ol.interaction.Draw(options)
| Name | Type | Description | ||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| options | Options. 
 | |||||||||||||||||||||||||||||||||||||||||||
Fires:
- 
            changeexperimental - Triggered when the revision counter is increased.
- 
            change:active(ol.ObjectEvent)
- 
            drawend(ol.interaction.DrawEvent) - Triggered upon feature draw end
- 
            drawstart(ol.interaction.DrawEvent) - Triggered upon feature draw start
- 
            propertychange(ol.ObjectEvent) - Triggered when a property is changed.
Extends
Observable Properties
| Name | Type | Settable | ol.ObjectEvent type | Description | 
|---|---|---|---|---|
| active | boolean | yes | change:active | 
 | 
Methods
- 
    ol.interaction.Draw.createRegularPolygon(opt_sides, opt_angle){ol.interaction.DrawGeometryFunctionType} experimentalsrc/ol/interaction/drawinteraction.js, line 792
- 
    
    Create a geometryFunctionformode: 'Circle'that will create a regular polygon with a user specified number of sides and start angle instead of anol.geom.Circlegeometry.Name Type Description sidesnumber Number of sides of the regular polygon. Default is 32. anglenumber Angle of the first point in radians. 0 means East. Default is the angle defined by the heading from the center of the regular polygon to the current pointer position. Returns:Function that draws a polygon.
 
- 
    ol.interaction.Draw.handleEvent(mapBrowserEvent){boolean} experimentalsrc/ol/interaction/drawinteraction.js, line 339
- 
    
    Handles the map browser eventand may actually draw or finish the drawing.This:Name Type Description mapBrowserEventol.MapBrowserEvent Map browser event. Returns:falseto stop event propagation.
 
- 
    changed() inherited experimentalsrc/ol/observable.js, line 50
- 
    
    Increases the revision counter and dispatches a 'change' event. 
- 
    dispatchEvent(event) inherited experimentalsrc/ol/observable.js, line 72
- 
    
    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 eventgoog.events.EventLike Event object. 
- 
    extend(feature) experimentalsrc/ol/interaction/drawinteraction.js, line 720
- 
    
    Extend an existing geometry by adding 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.Name Type Description featureol.Feature Feature to be extended. 
- 
    finishDrawing() experimentalsrc/ol/interaction/drawinteraction.js, line 652
- 
    
    Stop drawing and add the sketch feature to the target layer. The ol.interaction.DrawEventType.DRAWENDevent is dispatched before inserting the feature.
- 
    get(key){*} inheritedsrc/ol/object.js, line 147
- 
    
    Gets a value. Name Type Description keystring Key name. Returns:Value.
 
- 
    getActive(){boolean} inherited experimentalsrc/ol/interaction/interaction.js, line 65
- 
    
    Return whether the interaction is currently active. Returns:trueif the interaction is active,falseotherwise.
 
- 
    getKeys(){Array.<string>} inheritedsrc/ol/object.js, line 161
- 
    
    Get a list of object property names. Returns:List of property names.
 
- 
    
    Get the map associated with this interaction. Returns:Map.
 
- 
    getProperties(){Object.<string, *>} inheritedsrc/ol/object.js, line 171
- 
    
    Get an object of all property names and values. Returns:Object.
 
- 
    getRevision(){number} inherited experimentalsrc/ol/observable.js, line 81
- 
    
    Get the version number for this object. Each time the object is modified, its version number will be incremented. Returns:Revision.
 
- 
    on(type, listener, opt_this){goog.events.Key} inheritedsrc/ol/observable.js, line 94
- 
    
    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. thisObject The object to use as thisinlistener.Returns:Unique key for the listener.
 
- 
    once(type, listener, opt_this){goog.events.Key} inheritedsrc/ol/observable.js, line 107
- 
    
    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. thisObject The object to use as thisinlistener.Returns:Unique key for the listener.
 
- 
    removeLastPoint() experimentalsrc/ol/interaction/drawinteraction.js, line 619
- 
    
    Remove last point of the feature currently being drawn. 
- 
    set(key, value, opt_silent) inheritedsrc/ol/object.js, line 201
- 
    
    Sets a value. Name Type Description keystring Key name. value* Value. silentboolean Update without triggering an event. 
- 
    setActive(active) inherited experimentalsrc/ol/interaction/interaction.js, line 87
- 
    
    Activate or deactivate the interaction. Name Type Description activeboolean Active. 
- 
    setProperties(values, opt_silent) inheritedsrc/ol/object.js, line 221
- 
    
    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. 
- 
    un(type, listener, opt_this) inheritedsrc/ol/observable.js, line 120
- 
    
    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. thisObject The object which was used as thisby thelistener.
- 
    unByKey(key) inheritedsrc/ol/observable.js, line 133
- 
    
    Removes an event listener using the key returned by on()oronce(). Note that using theol.Observable.unByKeystatic function is to be preferred.Name Type Description keygoog.events.Key The key returned by on()oronce().
- 
    unset(key, opt_silent) inheritedsrc/ol/object.js, line 235
- 
    
    Unsets a property. Name Type Description keystring Key name. silentboolean Unset without triggering an event. 
 OpenLayers 3
 OpenLayers 3