Handle aborted tiles in ol.TileQueue

This commit is contained in:
Frederic Junod
2016-03-15 17:08:39 +01:00
parent b0984070db
commit c30ecace75
3 changed files with 5 additions and 2 deletions

View File

@@ -72,6 +72,8 @@ ol.ImageTile.prototype.disposeInternal = function() {
if (this.interimTile) {
this.interimTile.dispose();
}
this.state = ol.TileState.ABORT;
this.changed();
goog.base(this, 'disposeInternal');
};