Move State to ol.Tile

This commit is contained in:
Tim Schaub
2016-08-11 22:58:32 -06:00
parent ef468b3b06
commit 9e4d80b459
22 changed files with 126 additions and 131 deletions

View File

@@ -1,6 +1,6 @@
goog.provide('ol.featureloader');
goog.require('ol.TileState');
goog.require('ol.Tile');
goog.require('ol.format.FormatType');
goog.require('ol.xml');
@@ -93,7 +93,7 @@ ol.featureloader.tile = function(url, format) {
* @this {ol.VectorTile}
*/
function() {
this.setState(ol.TileState.ERROR);
this.setState(ol.Tile.State.ERROR);
});
};