UNPKG

helimap

Version:
19 lines (17 loc) 377 B
/** * @module ol/pointer/EventType */ /** * Constants for event names. * @enum {string} */ export default { POINTERMOVE: 'pointermove', POINTERDOWN: 'pointerdown', POINTERUP: 'pointerup', POINTEROVER: 'pointerover', POINTEROUT: 'pointerout', POINTERENTER: 'pointerenter', POINTERLEAVE: 'pointerleave', POINTERCANCEL: 'pointercancel', };