Imports cased like the filename
This commit is contained in:
14
src/ol/source/State.js
Normal file
14
src/ol/source/State.js
Normal file
@@ -0,0 +1,14 @@
|
||||
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'
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user