Leave as experimental until spec is finalized

This commit is contained in:
Tim Schaub
2021-08-29 15:40:20 -06:00
parent 4099f60779
commit 58cf9f5f6d
6 changed files with 19 additions and 8 deletions

View File

@@ -36,10 +36,9 @@ import {getTileSetInfo} from './ogcTileUtil.js';
/**
* @classdesc
* Layer source for map tiles from an OGC API - Tiles service that provides "map" type tiles.
* Layer source for map tiles from an [OGC API - Tiles](https://ogcapi.ogc.org/tiles/) service that provides "map" type tiles.
* The service must conform to at least the core (http://www.opengis.net/spec/ogcapi-tiles-1/1.0/conf/core)
* and tileset (http://www.opengis.net/spec/ogcapi-tiles-1/1.0/conf/tileset) conformance classes.
* @api
*/
class OGCMapTile extends TileImage {
/**
@@ -86,7 +85,7 @@ class OGCMapTile extends TileImage {
* @param {Error} error The error.
*/
handleError_(error) {
console.error(error); // eslint-disable-line
console.error(error); // eslint-disable-line no-console
this.setState(SourceState.ERROR);
}
}