@yangyongtao/gaea 1.1.21 → 1.1.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/GaeaMethods.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yangyongtao/gaea",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.22",
|
|
4
4
|
"description": "Gaea 3D visualization component library - Vue 3 components based on Godot WASM engine. Includes WMTS layer loading, camera view control, Vite plugin auto-injection, etc.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.cjs",
|
package/src/GaeaMethods.js
CHANGED
|
@@ -527,7 +527,7 @@ export class GaeaApp {
|
|
|
527
527
|
labelStore.ImageExtension = Gaea.ImageExtensionEnum.PNG;
|
|
528
528
|
labelStore.TK = cfg.tiandituToken;
|
|
529
529
|
labelStore.Name = '天地图注记';
|
|
530
|
-
labelStore.LevelRange = new Gaea.Vector2(
|
|
530
|
+
labelStore.LevelRange = new Gaea.Vector2(cfg.tiandituLevelRange[0], cfg.tiandituLevelRange[1]);
|
|
531
531
|
Gaea.World.Instance.DefaultPyramidTileSet.AddImageStore(labelStore);
|
|
532
532
|
console.log('天地图注记加载成功');
|
|
533
533
|
|