@vsleem-realsee-viewer/realsee-plugin 2.1.0 → 2.1.1

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.
@@ -5,7 +5,7 @@ import { TrackRecordModel } from './data';
5
5
  import { MapElement, MapProps } from './map';
6
6
  import { PlaybarElement, PlaybarProps } from './playbar';
7
7
  import { ObsConfig, RealseeStore } from './store';
8
- import { MarkerElement, MarkerProps, ViewerElement, ViewerProps } from './viewer';
8
+ import { MarkerElement, MarkerProps, Position, ViewerElement, ViewerProps } from './viewer';
9
9
  /**应用设置 */
10
10
  export type AppSetting = AppConfig & ObsConfig;
11
11
  /** 搜索参数 */
@@ -14,6 +14,8 @@ export type SearchInfo = {
14
14
  patrolId: string | string[] /** 巡检id或id集合 */;
15
15
  pointId?: string /** 轨迹点id(用第一个巡检记录来匹配) */;
16
16
  modelCsId?: number /** 模型坐标系id */;
17
+ pointIndex?: number /**巡检点patrolIndex下标(1.用第一个巡检记录来匹配;2.pointId > pointIndex) */;
18
+ rotate?: Position /**默认的视图视角 */;
17
19
  };
18
20
  /** 全景设置 */
19
21
  export type RealseeSetting = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vsleem-realsee-viewer/realsee-plugin",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "Realsee plugin for VSLeem RealSee Viewer",
5
5
  "main": "./dist/index.umd.js",
6
6
  "module": "./dist/index.mjs",
@@ -13,11 +13,11 @@
13
13
  "dist"
14
14
  ],
15
15
  "dependencies": {
16
- "@vsleem-realsee-viewer/shared": "2.1.0"
16
+ "@vsleem-realsee-viewer/shared": "2.1.1"
17
17
  },
18
18
  "peerDependencies": {
19
19
  "vue": ">=3.5.0",
20
- "@vsleem-realsee-viewer/shared": "2.1.0"
20
+ "@vsleem-realsee-viewer/shared": "2.1.1"
21
21
  },
22
22
  "peerDependenciesMeta": {
23
23
  "vue": {