Final renamings

This commit is contained in:
Guillaume Beraudo
2018-11-15 23:46:20 +01:00
parent 89fed65f07
commit ce44a9a3e4
16 changed files with 58 additions and 51 deletions
+8 -8
View File
@@ -67,7 +67,7 @@ class VectorTile extends Tile {
* @private
* @type {Object<string, import("./render/ExecutorGroup.js").default>}
*/
this.replayGroups_ = {};
this.executorGroups_ = {};
/**
* @private
@@ -88,7 +88,7 @@ class VectorTile extends Tile {
*/
disposeInternal() {
this.features_ = null;
this.replayGroups_ = {};
this.executorGroups_ = {};
this.state = TileState.ABORT;
this.changed();
super.disposeInternal();
@@ -142,10 +142,10 @@ class VectorTile extends Tile {
/**
* @param {import("./layer/Layer.js").default} layer Layer.
* @param {string} key Key.
* @return {import("./render/ExecutorGroup.js").default} Replay group.
* @return {import("./render/ExecutorGroup.js").default} Executor group.
*/
getExecutorGroup(layer, key) {
return this.replayGroups_[getUid(layer) + ',' + key];
return this.executorGroups_[getUid(layer) + ',' + key];
}
/**
@@ -153,17 +153,17 @@ class VectorTile extends Tile {
* @param {import("./layer/Layer").default} layer Layer.
* @param {number} zoom Zoom.
* @param {import("./extent").Extent} extent Extent.
* @return {import("./render/ExecutorGroup.js").default} Replay groups.
* @return {import("./render/ExecutorGroup.js").default} Executor groups.
*/
getLowResExecutorGroup(layer, zoom, extent) {
const layerId = getUid(layer);
let bestZoom = 0;
let replayGroup = null;
for (const key in this.replayGroups_) {
for (const key in this.executorGroups_) {
const keyData = key.split(',');
const candidateZoom = Number(keyData[1]);
if (keyData[0] === layerId && candidateZoom <= zoom) {
const candidate = this.replayGroups_[key];
const candidate = this.executorGroups_[key];
if (containsExtent(candidate.getMaxExtent(), extent) && candidateZoom > bestZoom) {
replayGroup = candidate;
bestZoom = candidateZoom;
@@ -247,7 +247,7 @@ class VectorTile extends Tile {
* @param {import("./render/ExecutorGroup.js").default} executorGroup Executor group.
*/
setExecutorGroup(layer, key, executorGroup) {
this.replayGroups_[getUid(layer) + ',' + key] = executorGroup;
this.executorGroups_[getUid(layer) + ',' + key] = executorGroup;
}
/**