UNPKG

ol

Version:

OpenLayers mapping library

19 lines (17 loc) 358 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' };