c8y-openlayer
Version:
This module is designed to help integrate Openlayer with Cumulocity IoT
20 lines (18 loc) • 372 B
JavaScript
/**
* @enum {string}
*/
var _ol_CollectionEventType_ = {
/**
* Triggered when an item is added to the collection.
* @event ol.Collection.Event#add
* @api
*/
ADD: 'add',
/**
* Triggered when an item is removed from the collection.
* @event ol.Collection.Event#remove
* @api
*/
REMOVE: 'remove'
};
export default _ol_CollectionEventType_;