Files
openlayers/src/ol/source/state.js
2016-09-01 06:58:12 -06:00

15 lines
243 B
JavaScript

goog.provide('ol.source.State');
/**
* State of the source, one of 'undefined', 'loading', 'ready' or 'error'.
* @enum {string}
*/
ol.source.State = {
UNDEFINED: 'undefined',
LOADING: 'loading',
READY: 'ready',
ERROR: 'error'
};