@soonspacejs/plugin-cps-soonmanager 2.14.29 → 2.14.31
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/dist/constants.d.ts +1 -0
- package/dist/index.d.ts +8 -6
- package/dist/index.esm.js +23089 -23007
- package/dist/types.d.ts +43 -0
- package/package.json +8 -9
package/dist/constants.d.ts
CHANGED
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 {
|
|
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
|
*/
|