Remove remaining ol.foo notation from the source

This commit is contained in:
Tim Schaub
2018-05-07 21:00:03 -06:00
parent 34c1a6b9ba
commit 5b65336328
15 changed files with 34 additions and 30 deletions

View File

@@ -116,7 +116,7 @@ inherits(TileDebug, TileSource);
TileDebug.prototype.getTile = function(z, x, y) {
const tileCoordKey = getKeyZXY(z, x, y);
if (this.tileCache.containsKey(tileCoordKey)) {
return /** @type {!ol.source.LabeledTile} */ (this.tileCache.get(tileCoordKey));
return /** @type {!module:ol/source/LabeledTile} */ (this.tileCache.get(tileCoordKey));
} else {
const tileSize = toSize(this.tileGrid.getTileSize(z));
const tileCoord = [z, x, y];