openlayers
Version:
Build tools and sources for developing OpenLayers based mapping applications
20 lines (18 loc) • 365 B
JavaScript
goog.provide('ol.CollectionEventType');
/**
* @enum {string}
*/
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'
};