iflow-engine 3.9.203 → 3.9.211
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/README.md +1 -573
- package/dist/bim-engine-2d.d.ts +1 -0
- package/dist/bim-engine-720.d.ts +1 -0
- package/dist/bim-engine-gaussian.d.ts +1 -0
- package/dist/bim-engine-gis.d.ts +2 -1
- package/dist/bim-engine.d.ts +44 -3
- package/dist/components/engine/index.d.ts +1 -0
- package/dist/components/engine-2d/index.d.ts +1 -0
- package/dist/components/engine-720/index.d.ts +1 -0
- package/dist/components/engine-gaussian/index.d.ts +1 -0
- package/dist/components/engine-gis/index.d.ts +1 -0
- package/dist/core/sdk-auth.d.ts +3 -0
- package/dist/cus-bim-engine.d.ts +3 -0
- package/dist/iflow-engine.es.js +106391 -79563
- package/dist/iflow-engine.umd.js +1470 -1470
- package/dist/managers/engine-2d-manager.d.ts +1 -0
- package/dist/managers/engine-720-manager.d.ts +1 -0
- package/dist/managers/engine-gaussian-manager.d.ts +1 -0
- package/dist/managers/engine-gis-manager.d.ts +1 -0
- package/dist/managers/engine-manager.d.ts +1 -0
- package/package.json +3 -3
|
@@ -34,6 +34,7 @@ export declare class Engine720Manager extends BaseManager {
|
|
|
34
34
|
* @param options 加载选项
|
|
35
35
|
*/
|
|
36
36
|
loadPanorama(url: string, options?: PanoramaLoadOptions): Promise<void>;
|
|
37
|
+
loadModelByViewToken(viewToken: string): Promise<void>;
|
|
37
38
|
/**
|
|
38
39
|
* 预加载多个全景图
|
|
39
40
|
* @param urls 全景图 URL 列表
|
|
@@ -14,6 +14,7 @@ export declare class EngineGaussianManager extends BaseManager {
|
|
|
14
14
|
initialize(options?: Omit<EngineGaussianOptions, 'container'>): boolean;
|
|
15
15
|
isInitialized(): boolean;
|
|
16
16
|
loadModel(url: string, options?: GaussianLoadOptions): Promise<GaussianSceneInfo | null>;
|
|
17
|
+
loadModelByViewToken(viewToken: string): Promise<GaussianSceneInfo | null>;
|
|
17
18
|
unloadModel(id: string): Promise<void>;
|
|
18
19
|
clearModels(): Promise<void>;
|
|
19
20
|
setOrientationPreset(preset: GaussianOrientationPreset): void;
|
|
@@ -76,6 +76,7 @@ export declare class EngineGisManager extends BaseManager {
|
|
|
76
76
|
* 对外开放 id/name/url/offset/rotationUnit,显示状态、精度和 tilesetOptions 等参数在组件内部使用默认值。
|
|
77
77
|
*/
|
|
78
78
|
load3DTiles(options: EngineGis3DTilesLoadOptions): Promise<EngineGisLoaded3DTilesModel | null>;
|
|
79
|
+
loadModelByViewToken(viewToken: string): Promise<EngineGisLoaded3DTilesModel | null>;
|
|
79
80
|
/** 打开 GIS 模型校验 Dock 窗口 */
|
|
80
81
|
openModelCalibrationDock(): void;
|
|
81
82
|
/** 获取 GIS 模型校验面板需要展示的 3D Tiles 模型列表 */
|
|
@@ -80,6 +80,7 @@ export declare class EngineManager extends BaseManager {
|
|
|
80
80
|
* @param options 加载选项
|
|
81
81
|
*/
|
|
82
82
|
loadModel(urls: string[], options?: ModelLoadOptions): void;
|
|
83
|
+
loadModelByViewToken(viewToken: string): Promise<void>;
|
|
83
84
|
/** 进入一次 3D 模型选点模式 */
|
|
84
85
|
pickPoint(): Promise<LabelCoordinate | null>;
|
|
85
86
|
/** 兼容回调式 3D 选点 */
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "iflow-engine",
|
|
3
|
-
"version": "3.9.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "3.9.211",
|
|
4
|
+
"description": "bim-engine",
|
|
5
5
|
"main": "./dist/iflow-engine.umd.js",
|
|
6
6
|
"module": "./dist/iflow-engine.es.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
64
|
"cesium": "^1.142.0",
|
|
65
|
-
"iflow-engine-base": "3.9.
|
|
65
|
+
"iflow-engine-base": "3.9.211",
|
|
66
66
|
"three": "^0.182.0"
|
|
67
67
|
}
|
|
68
68
|
}
|