Merge pull request #10840 from fredj/remove_inheritDoc

Remove inherit doc
This commit is contained in:
Frédéric Junod
2020-04-04 14:06:43 +02:00
committed by GitHub
120 changed files with 891 additions and 573 deletions
+20 -12
View File
@@ -140,7 +140,7 @@ class TileImage extends UrlTile {
}
/**
* @inheritDoc
* @return {boolean} Can expire cache.
*/
canExpireCache() {
if (!ENABLE_RASTER_REPROJECTION) {
@@ -159,7 +159,8 @@ class TileImage extends UrlTile {
}
/**
* @inheritDoc
* @param {import("../proj/Projection.js").default} projection Projection.
* @param {!Object<string, boolean>} usedTiles Used tiles.
*/
expireCache(projection, usedTiles) {
if (!ENABLE_RASTER_REPROJECTION) {
@@ -176,7 +177,8 @@ class TileImage extends UrlTile {
}
/**
* @inheritDoc
* @param {import("../proj/Projection.js").default} projection Projection.
* @return {number} Gutter.
*/
getContextOptions() {
return this.contextOptions_;
@@ -202,7 +204,8 @@ class TileImage extends UrlTile {
}
/**
* @inheritDoc
* @param {import("../proj/Projection.js").default} projection Projection.
* @return {boolean} Opaque.
*/
getOpaque(projection) {
if (ENABLE_RASTER_REPROJECTION &&
@@ -214,7 +217,8 @@ class TileImage extends UrlTile {
}
/**
* @inheritDoc
* @param {import("../proj/Projection.js").default} projection Projection.
* @return {!import("../tilegrid/TileGrid.js").default} Tile grid.
*/
getTileGridForProjection(projection) {
if (!ENABLE_RASTER_REPROJECTION) {
@@ -228,14 +232,13 @@ class TileImage extends UrlTile {
if (!(projKey in this.tileGridForProjection)) {
this.tileGridForProjection[projKey] = getTileGridForProjection(projection);
}
return (
/** @type {!import("../tilegrid/TileGrid.js").default} */ (this.tileGridForProjection[projKey])
);
return this.tileGridForProjection[projKey];
}
}
/**
* @inheritDoc
* @param {import("../proj/Projection.js").default} projection Projection.
* @return {import("../TileCache.js").default} Tile cache.
*/
getTileCacheForProjection(projection) {
if (!ENABLE_RASTER_REPROJECTION) {
@@ -281,10 +284,15 @@ class TileImage extends UrlTile {
}
/**
* @inheritDoc
* @param {number} z Tile coordinate z.
* @param {number} x Tile coordinate x.
* @param {number} y Tile coordinate y.
* @param {number} pixelRatio Pixel ratio.
* @param {import("../proj/Projection.js").default} projection Projection.
* @return {!import("../Tile.js").default} Tile.
*/
getTile(z, x, y, pixelRatio, projection) {
const sourceProjection = /** @type {!import("../proj/Projection.js").default} */ (this.getProjection());
const sourceProjection = this.getProjection();
if (!ENABLE_RASTER_REPROJECTION ||
!sourceProjection || !projection || equivalent(sourceProjection, projection)) {
return this.getTileInternal(z, x, y, pixelRatio, sourceProjection || projection);
@@ -294,7 +302,7 @@ class TileImage extends UrlTile {
let tile;
const tileCoordKey = getKey(tileCoord);
if (cache.containsKey(tileCoordKey)) {
tile = /** @type {!import("../Tile.js").default} */ (cache.get(tileCoordKey));
tile = cache.get(tileCoordKey);
}
const key = this.getKey();
if (tile && tile.key == key) {