Namespace: interaction

ol.interaction

Classes

DoubleClickZoom
DragAndDrop
DragAndDropEvent
DragBox
DragPan
DragRotate
DragRotateAndZoom
DragZoom
Draw
DrawEvent
Extent
ExtentEvent
Interaction
KeyboardPan
KeyboardZoom
Modify
ModifyEvent
MouseWheelZoom
PinchRotate
PinchZoom
Pointer
Select
SelectEvent
Snap
Translate
TranslateEvent

Methods

ol.interaction.defaults(opt_options){ol.Collection.<ol.interaction.Interaction>}

src/ol/interaction/index.js, line 40

Set of interactions included in maps by default. Specific interactions can be excluded by setting the appropriate option to false in the constructor options, but the order of the interactions is fixed. If you want to specify a different order for interactions, you will need to create your own ol.interaction.Interaction instances and insert them into a ol.Collection in the order you want before creating your ol.Map instance. The default set of interactions, in sequence, is:

Name Type Description
options

Defaults options.

Name Type Description
altShiftDragRotate boolean | undefined experimental

Whether Alt-Shift-drag rotate is desired. Default is true.

doubleClickZoom boolean | undefined experimental

Whether double click zoom is desired. Default is true.

keyboard boolean | undefined experimental

Whether keyboard interaction is desired. Default is true.

mouseWheelZoom boolean | undefined experimental

Whether mousewheel zoom is desired. Default is true.

shiftDragZoom boolean | undefined experimental

Whether Shift-drag zoom is desired. Default is true.

dragPan boolean | undefined experimental

Whether drag pan is desired. Default is true.

pinchRotate boolean | undefined experimental

Whether pinch rotate is desired. Default is true.

pinchZoom boolean | undefined experimental

Whether pinch zoom is desired. Default is true.

zoomDelta number | undefined experimental

Zoom delta.

zoomDuration number | undefined experimental

Zoom duration.

Returns:
A collection of interactions to be used with the ol.Map constructor's interactions option.

Events

ol.interaction.event:ExtentEvent experimental

src/ol/interaction/extent.js, line 25

Triggered after the extent is changed