@soonspacejs/plugin-cps-soonmanager 2.14.28 → 2.14.30

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.
@@ -42,6 +42,7 @@ export declare const SPACES_DATA_FILE_PATH = "/db/spaces";
42
42
  * 流程
43
43
  */
44
44
  export declare const FLOWS_DATA_FILE_PATH = "/db/flows2";
45
+ export declare const GIS_DATA_FILE_PATH = "/db/gis_nodes";
45
46
  /**
46
47
  * 自定义属性 key
47
48
  */
package/dist/index.d.ts CHANGED
@@ -3,11 +3,11 @@ import { PoiNodeData } from '@soonspacejs/plugin-poi-renderer';
3
3
  import { default as EffectPlugin } from '@soonspacejs/plugin-effect';
4
4
  import { default as AtmospherePlugin } from '@soonspacejs/plugin-atmosphere';
5
5
  import { FlowType } from '@soonspacejs/plugin-flow';
6
- import { ArcgisTilesRenderer } from '@soonspacejs/plugin-tiles';
6
+ import { TerrainTilesRenderer } from '@soonspacejs/plugin-tiles';
7
7
  import { default as SoonFlow } from '@soonflow/core';
8
8
  import { AnimationPlayer } from 'umanager-animation-parser';
9
9
  import { EventDispatcher } from 'three';
10
- import { IMetadata, ITreeData, IInnerTreeData, IPoiData, ITopologyPath, ILoadSceneOptions, TPropertiesMap, TAnimationsMap, IPlayAnimationByIdOptions, TModelVisionsMap, IPresetEffectsOptions, TSpacesMap, ConstructorOptions, ISpaces, IFlatData, IProgress, IProgressEventMap } from './types';
10
+ import { IMetadata, ITreeData, IInnerTreeData, IPoiData, ITopologyPath, ILoadSceneOptions, TPropertiesMap, TAnimationsMap, IPlayAnimationByIdOptions, TModelVisionsMap, IPresetEffectsOptions, TSpacesMap, ConstructorOptions, ISpaces, IFlatData, IProgress, IProgressEventMap, IGisData } from './types';
11
11
  declare class CpsSoonmanagerPlugin extends EventDispatcher<IProgressEventMap> {
12
12
  #private;
13
13
  readonly ssp: SoonSpace;
@@ -64,6 +64,10 @@ declare class CpsSoonmanagerPlugin extends EventDispatcher<IProgressEventMap> {
64
64
  * 流程数据
65
65
  */
66
66
  flowsData: FlowType[] | null;
67
+ /**
68
+ * gis 数据
69
+ */
70
+ gisData: IGisData | null;
67
71
  /**
68
72
  * effect 插件
69
73
  */
@@ -72,10 +76,7 @@ declare class CpsSoonmanagerPlugin extends EventDispatcher<IProgressEventMap> {
72
76
  * atomsphere 插件
73
77
  */
74
78
  atmospherePlugin: AtmospherePlugin;
75
- /**
76
- * arcgis 瓦片渲染器
77
- */
78
- arcgisTilesRenderer: ArcgisTilesRenderer;
79
+ terrainTilesRenderer: TerrainTilesRenderer;
79
80
  /**
80
81
  * 流程引擎实咧
81
82
  */
@@ -136,6 +137,7 @@ declare class CpsSoonmanagerPlugin extends EventDispatcher<IProgressEventMap> {
136
137
  */
137
138
  fetchSpacesData(): Promise<Map<string, import('./types').BaseTreeNode<ISpaces>>>;
138
139
  fetchFlowsData(): Promise<FlowType[]>;
140
+ fetchGisData(): Promise<IGisData>;
139
141
  /**
140
142
  * 格式化 Poi 数据完成 Poi Renderer 插件使用
141
143
  */