Remove LayerType

This commit is contained in:
Tim Schaub
2018-11-04 19:54:55 -07:00
parent c50b9b2c25
commit ca5b0c63a5
7 changed files with 1 additions and 61 deletions

View File

@@ -65,21 +65,6 @@ class BaseLayer extends BaseObject {
*/
this.state_ = null;
/**
* The layer type.
* @type {import("../LayerType.js").default}
* @protected;
*/
this.type;
}
/**
* Get the layer type (used when creating a layer renderer).
* @return {import("../LayerType.js").default} The layer type.
*/
getType() {
return this.type;
}
/**