Do not use tile.load() for getting source tiles

This commit is contained in:
ahocevar
2019-03-20 22:26:56 +01:00
parent 461256767e
commit a25ca03040
4 changed files with 5 additions and 6 deletions

View File

@@ -167,10 +167,9 @@ class VectorRenderTile extends Tile {
/**
* @inheritDoc
* @return {Array<import("./VectorTile.js").default>} Source tiles for this tile.
*/
load() {
return this.getSourceTiles_(this);
this.getSourceTiles_(this);
}
}