Files
openlayers/src/ol/source/State.js
2018-09-13 11:42:59 +02:00

15 lines
240 B
JavaScript

/**
* @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'
};