UNPKG

openlayers

Version:

Build tools and sources for developing OpenLayers based mapping applications

15 lines (11 loc) 243 B
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' };