We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed82206 commit 94c14f0Copy full SHA for 94c14f0
src/class/GEOResourceManifest.mjs
@@ -50,17 +50,14 @@ export default class GEOResourceManifest {
50
// 填补空缺图源
51
switch (countryCode) {
52
case "CN":
53
- /*
54
// 填补数据组
55
caches.CN.tileSet = caches.CN.tileSet.map(tile => {
56
tile.dataSet = 0;
57
return tile;
58
});
59
- */
60
caches.XX.tileSet.forEach(tile => {
61
if (!caches.CN.tileSet.some(i => i.style === tile.style)) {
62
log(`⚠️ Missing style: ${tile?.style}`, "");
63
- delete tile.dataSet; // 移除数据组
64
tileSet.push(tile);
65
};
66
0 commit comments