Namespace: condition

ol.events.condition

Methods

ol.events.condition.altKeyOnly(mapBrowserEvent){boolean}

src/ol/events/condition.js, line 29

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 46

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 63

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 73

Return true if the event is a click event, false otherwise.

Name Type Description
mapBrowserEvent ol.MapBrowserEvent

Map browser event.

Returns:
True if the event is a map click event.

ol.events.condition.mouseOnly(mapBrowserEvent){boolean}

src/ol/events/condition.js, line 192

Return true if the event originates from a mouse device.

Name Type Description
mapBrowserEvent ol.MapBrowserEvent

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 86

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 122

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 139

Return true if only the platform-modifier-key (e.g. the windows-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 platform modifier key is pressed.

ol.events.condition.pointerMove(mapBrowserEvent){boolean} experimental

src/ol/events/condition.js, line 97

Return true if the browser event is a pointermove event, false otherwise.

Name Type Description
mapBrowserEvent ol.MapBrowserEvent

Map browser event.

Returns:
True if the browser event is a pointermove event.

ol.events.condition.shiftKeyOnly(mapBrowserEvent){boolean}

src/ol/events/condition.js, line 156

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 109

Return true if the event is a map singleclick event, false otherwise.

Name Type Description
mapBrowserEvent ol.MapBrowserEvent

Map browser event.

Returns:
True if the event is a map singleclick event.

ol.events.condition.targetNotEditable(mapBrowserEvent){boolean} experimental

src/ol/events/condition.js, line 173

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.