Module: ol/interaction/DragBox

ol/interaction/DragBox


Classes

DragBoxEvent
DragBox

Type Definitions

A function that takes a MapBrowserEvent and two Pixels and returns a {boolean}. If the condition is met, true should be returned.

Options{Object}

Properties:
Name Type Argument Default Description
className string <optional>
'ol-dragbox'

CSS class name for styling the box.

condition Condition <optional>

A function that takes an MapBrowserEvent and returns a boolean to indicate whether that event should be handled. Default is ol/events/condition~mouseActionButton.

minArea number <optional>
64

The minimum area of the box in pixel, this value is used by the default boxEndCondition function.

boxEndCondition EndCondition <optional>

A function that takes a MapBrowserEvent and two Pixels to indicate whether a boxend event should be fired. Default is true if the area of the box is bigger than the minArea option.

onBoxEnd function <optional>

Code to execute just before boxend is fired.