UNPKG

ol

Version:

OpenLayers mapping library

18 lines 410 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' }; //# sourceMappingURL=EventType.js.map