Remove all inheritDoc tags from src/ol/
This commit is contained in:
+1
-1
@@ -78,7 +78,7 @@ class ImageWrapper extends ImageBase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritDoc
|
* @return {HTMLCanvasElement|HTMLImageElement|HTMLVideoElement} Image.
|
||||||
* @api
|
* @api
|
||||||
*/
|
*/
|
||||||
getImage() {
|
getImage() {
|
||||||
|
|||||||
@@ -76,7 +76,7 @@ class ImageCanvas extends ImageBase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritDoc
|
* Load not yet loaded URI.
|
||||||
*/
|
*/
|
||||||
load() {
|
load() {
|
||||||
if (this.state == ImageState.IDLE) {
|
if (this.state == ImageState.IDLE) {
|
||||||
|
|||||||
+2
-2
@@ -68,7 +68,7 @@ class ImageTile extends Tile {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritDoc
|
* @return {string} Key.
|
||||||
*/
|
*/
|
||||||
getKey() {
|
getKey() {
|
||||||
return this.src_;
|
return this.src_;
|
||||||
@@ -103,7 +103,7 @@ class ImageTile extends Tile {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritDoc
|
* Load not yet loaded URI.
|
||||||
* @api
|
* @api
|
||||||
*/
|
*/
|
||||||
load() {
|
load() {
|
||||||
|
|||||||
+2
-1
@@ -59,7 +59,8 @@ class TileQueue extends PriorityQueue {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritDoc
|
* @param {Array} element Element.
|
||||||
|
* @return {boolean} The element was added to the queue.
|
||||||
*/
|
*/
|
||||||
enqueue(element) {
|
enqueue(element) {
|
||||||
const added = super.enqueue(element);
|
const added = super.enqueue(element);
|
||||||
|
|||||||
@@ -155,14 +155,14 @@ class VectorRenderTile extends Tile {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritDoc
|
* Load the tile.
|
||||||
*/
|
*/
|
||||||
load() {
|
load() {
|
||||||
this.getSourceTiles();
|
this.getSourceTiles();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritDoc
|
* Remove from the cache due to expiry
|
||||||
*/
|
*/
|
||||||
release() {
|
release() {
|
||||||
for (const key in this.context_) {
|
for (const key in this.context_) {
|
||||||
|
|||||||
@@ -87,14 +87,14 @@ class VectorTile extends Tile {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritDoc
|
* @return {string} Key.
|
||||||
*/
|
*/
|
||||||
getKey() {
|
getKey() {
|
||||||
return this.url_;
|
return this.url_;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritDoc
|
* Load not yet loaded URI.
|
||||||
*/
|
*/
|
||||||
load() {
|
load() {
|
||||||
if (this.state == TileState.IDLE) {
|
if (this.state == TileState.IDLE) {
|
||||||
|
|||||||
@@ -122,7 +122,7 @@ class ReprojImage extends ImageBase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritDoc
|
* @return {HTMLCanvasElement} Image.
|
||||||
*/
|
*/
|
||||||
getImage() {
|
getImage() {
|
||||||
return this.canvas_;
|
return this.canvas_;
|
||||||
@@ -156,7 +156,7 @@ class ReprojImage extends ImageBase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritDoc
|
* Load not yet loaded URI.
|
||||||
*/
|
*/
|
||||||
load() {
|
load() {
|
||||||
if (this.state == ImageState.IDLE) {
|
if (this.state == ImageState.IDLE) {
|
||||||
|
|||||||
@@ -249,7 +249,7 @@ class ReprojTile extends Tile {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritDoc
|
* Load not yet loaded URI.
|
||||||
*/
|
*/
|
||||||
load() {
|
load() {
|
||||||
if (this.state == TileState.IDLE) {
|
if (this.state == TileState.IDLE) {
|
||||||
|
|||||||
Reference in New Issue
Block a user