UNPKG

ol

Version:

OpenLayers mapping library

14 lines 280 B
/** * @module ol/source/State */ /** * @enum {string} * State of the source, one of 'undefined', 'loading', 'ready' or 'error'. */ export default { UNDEFINED: 'undefined', LOADING: 'loading', READY: 'ready', ERROR: 'error' }; //# sourceMappingURL=State.js.map