Rename _ol_LayerType_ to LayerType

This commit is contained in:
Frederic Junod
2017-12-18 16:43:10 +01:00
parent 30a9c49bf0
commit c64aada38f
11 changed files with 24 additions and 24 deletions
+2 -2
View File
@@ -2,7 +2,7 @@
* @module ol/layer/Tile
*/
import {inherits} from '../index.js';
import _ol_LayerType_ from '../LayerType.js';
import LayerType from '../LayerType.js';
import _ol_layer_Layer_ from '../layer/Layer.js';
import _ol_layer_TileProperty_ from '../layer/TileProperty.js';
import _ol_obj_ from '../obj.js';
@@ -39,7 +39,7 @@ var _ol_layer_Tile_ = function(opt_options) {
* @protected
* @type {ol.LayerType}
*/
this.type = _ol_LayerType_.TILE;
this.type = LayerType.TILE;
};