model-action 1.0.16 → 1.0.17

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "model-action",
3
- "version": "1.0.16",
3
+ "version": "1.0.17",
4
4
  "description": "与三维交互api",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -55,7 +55,7 @@ export class VideoFusionAction extends Action {
55
55
  id,
56
56
  fov,
57
57
  };
58
- this.sendParam(param,`飞行到视频融合点位【${id}】`)
58
+ this.sendParam(param, `飞行到视频融合点位【${id}】`)
59
59
  }
60
60
 
61
61
  /**
@@ -106,6 +106,17 @@ export class VideoFusionAction extends Action {
106
106
  action: "refresh",
107
107
  token,
108
108
  };
109
- this.sendParam(param,'刷新视频融合')
109
+ this.sendParam(param, '刷新视频融合')
110
+ }
111
+
112
+ /**
113
+ * 获取融合点位列表
114
+ */
115
+ static videoFusionList() {
116
+ const param = {
117
+ cmd: "videoFusion",
118
+ action: "get",
119
+ };
120
+ this.sendParam(param, '获取视频融合点位列表')
110
121
  }
111
122
  }