Classes
- DoubleClickZoom
- DragAndDrop
- DragAndDropEvent
- DragBox
- DragPan
- DragRotate
- DragRotateAndZoom
- DragZoom
- Draw
- Interaction
- KeyboardPan
- KeyboardZoom
- Modify
- MouseWheelZoom
- PinchRotate
- PinchZoom
- Pointer
- Select
Methods
-
ol.interaction.defaults(opt_options){ol.Collection.<ol.interaction.Interaction>}
src/ol/interaction/interactiondefaults.js, line 42 -
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.Interactioninstances and insert them into aol.Collectionin the order you want before creating yourol.Mapinstance. The default set of interactions, in sequence, is:ol.interaction.DragRotateol.interaction.DoubleClickZoomol.interaction.DragPanol.interaction.PinchRotateol.interaction.PinchZoomol.interaction.KeyboardPanol.interaction.KeyboardZoomol.interaction.MouseWheelZoomol.interaction.DragZoom
Note that DragZoom renders a box as a vector polygon, so this interaction should be excluded if you want a build with no vector support.
Name Type Description optionsDefaults options.
Name Type Description altShiftDragRotateboolean | undefined experimental Whether Alt-Shift-drag rotate is desired. Default is
true.doubleClickZoomboolean | undefined experimental Whether double click zoom is desired. Default is
true.keyboardboolean | undefined experimental Whether keyboard interaction is desired. Default is
true.mouseWheelZoomboolean | undefined experimental Whether mousewheel zoom is desired. Default is
true.shiftDragZoomboolean | undefined experimental Whether Shift-drag zoom is desired. Default is
true.dragPanboolean | undefined experimental Whether drag pan is desired. Default is
true.pinchRotateboolean | undefined experimental Whether pinch rotate is desired. Default is
true.pinchZoomboolean | undefined experimental Whether pinch zoom is desired. Default is
true.zoomDeltanumber | undefined experimental Zoom delta.
zoomDurationnumber | undefined experimental Zoom duration.
Returns:
A collection of interactions to be used with the ol.Map constructor's interactions option.