UNPKG

ol

Version:

OpenLayers mapping library

22 lines (20 loc) 392 B
/** * @module ol/CollectionEventType */ /** * @enum {string} */ export default { /** * Triggered when an item is added to the collection. * @event module:ol/Collection.CollectionEvent#add * @api */ ADD: 'add', /** * Triggered when an item is removed from the collection. * @event module:ol/Collection.CollectionEvent#remove * @api */ REMOVE: 'remove', };