Methods
-
ol.events.condition.altKeyOnly(mapBrowserEvent){boolean}
src/ol/events/condition.js, line 28 -
Return
true
if only the alt-key is pressed,false
otherwise (e.g. when additionally the shift-key is pressed).Name Type Description mapBrowserEvent
ol.MapBrowserEvent Map browser event.
Returns:
True if only the alt key is pressed.
-
ol.events.condition.altShiftKeysOnly(mapBrowserEvent){boolean}
src/ol/events/condition.js, line 45 -
Return
true
if only the alt-key and shift-key is pressed,false
otherwise (e.g. when additionally the platform-modifier-key is pressed).Name Type Description mapBrowserEvent
ol.MapBrowserEvent Map browser event.
Returns:
True if only the alt and shift keys are pressed.
-
ol.events.condition.always(mapBrowserEvent){boolean}
src/ol/events/condition.js, line 62 -
Return always true.
Name Type Description mapBrowserEvent
ol.MapBrowserEvent Map browser event.
Returns:
True.
-
ol.events.condition.click(mapBrowserEvent){boolean}
src/ol/events/condition.js, line 72 -
Return
true
if the event is aclick
event,false
otherwise.Name Type Description mapBrowserEvent
ol.MapBrowserEvent Map browser event.
Returns:
True if the event is a mapclick
event.
-
ol.events.condition.doubleClick(mapBrowserEvent){boolean}
src/ol/events/condition.js, line 120 -
Return
true
if the event is a mapdblclick
event,false
otherwise.Name Type Description mapBrowserEvent
ol.MapBrowserEvent Map browser event.
Returns:
True if the event is a mapdblclick
event.
-
ol.events.condition.mouseOnly(mapBrowserEvent){boolean}
src/ol/events/condition.js, line 204 -
Return
true
if the event originates from a mouse device.Name Type Description mapBrowserEvent
ol.MapBrowserPointerEvent Map browser event.
Returns:
True if the event originates from a mouse device.
-
ol.events.condition.never(mapBrowserEvent){boolean}
src/ol/events/condition.js, line 85 -
Return always false.
Name Type Description mapBrowserEvent
ol.MapBrowserEvent Map browser event.
Returns:
False.
-
ol.events.condition.noModifierKeys(mapBrowserEvent){boolean}
src/ol/events/condition.js, line 133 -
Return
true
if no modifier key (alt-, shift- or platform-modifier-key) is pressed.Name Type Description mapBrowserEvent
ol.MapBrowserEvent Map browser event.
Returns:
True only if there no modifier keys are pressed.
-
ol.events.condition.platformModifierKeyOnly(mapBrowserEvent){boolean}
src/ol/events/condition.js, line 151 -
Return
true
if only the platform-modifier-key (the meta-key on Mac, ctrl-key otherwise) is pressed,false
otherwise (e.g. when additionally the shift-key is pressed).Name Type Description mapBrowserEvent
ol.MapBrowserEvent Map browser event.
Returns:
True if only the platform modifier key is pressed.
-
ol.events.condition.pointerMove(mapBrowserEvent){boolean} experimental
src/ol/events/condition.js, line 96 -
Return
true
if the browser event is apointermove
event,false
otherwise.Name Type Description mapBrowserEvent
ol.MapBrowserEvent Map browser event.
Returns:
True if the browser event is apointermove
event.
-
ol.events.condition.shiftKeyOnly(mapBrowserEvent){boolean}
src/ol/events/condition.js, line 168 -
Return
true
if only the shift-key is pressed,false
otherwise (e.g. when additionally the alt-key is pressed).Name Type Description mapBrowserEvent
ol.MapBrowserEvent Map browser event.
Returns:
True if only the shift key is pressed.
-
ol.events.condition.singleClick(mapBrowserEvent){boolean}
src/ol/events/condition.js, line 108 -
Return
true
if the event is a mapsingleclick
event,false
otherwise.Name Type Description mapBrowserEvent
ol.MapBrowserEvent Map browser event.
Returns:
True if the event is a mapsingleclick
event.
-
ol.events.condition.targetNotEditable(mapBrowserEvent){boolean} experimental
src/ol/events/condition.js, line 185 -
Return
true
if the target element is not editable, i.e. not a<input>
-,<select>
- or<textarea>
-element,false
otherwise.Name Type Description mapBrowserEvent
ol.MapBrowserEvent Map browser event.
Returns:
True only if the target element is not editable.