43 lines
920 B
JavaScript
43 lines
920 B
JavaScript
/**
|
|
* @module ol/TileCache
|
|
*/
|
|
import LRUCache from './structs/LRUCache.js';
|
|
import {fromKey, getKey} from './tilecoord.js';
|
|
|
|
class TileCache extends LRUCache {
|
|
|
|
/**
|
|
* @param {!Object<string, import("./TileRange.js").default>} usedTiles Used tiles.
|
|
*/
|
|
expireCache(usedTiles) {
|
|
while (this.canExpireCache()) {
|
|
const tile = this.peekLast();
|
|
if (tile.getKey() in usedTiles) {
|
|
break;
|
|
} else {
|
|
this.pop();
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Prune all tiles from the cache that don't have the same z as the newest tile.
|
|
*/
|
|
pruneExceptNewestZ() {
|
|
if (this.getCount() === 0) {
|
|
return;
|
|
}
|
|
const key = this.peekFirstKey();
|
|
const tileCoord = fromKey(key);
|
|
const z = tileCoord[0];
|
|
this.forEach(function(tile) {
|
|
if (tile.tileCoord[0] !== z) {
|
|
this.remove(getKey(tile.tileCoord));
|
|
}
|
|
}.bind(this));
|
|
}
|
|
}
|
|
|
|
|
|
export default TileCache;
|