@vsleem-realsee-viewer/dualsee-plugin 2.0.3 → 2.0.4
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 +210 -0
- package/dist/index.css +1 -1
- package/dist/index.d.ts +530 -594
- package/dist/index.mjs +407 -368
- package/dist/index.umd.js +1 -1
- package/package.json +7 -7
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { AllowedComponentProps } from 'vue';
|
|
2
2
|
import { AppSetting } from '@vsleem-realsee-viewer/shared';
|
|
3
|
+
import { BimseeElement } from '@vsleem-realsee-viewer/bimsee-plugin';
|
|
3
4
|
import { BimseeProps } from '@vsleem-realsee-viewer/bimsee-plugin';
|
|
4
5
|
import { BimseeSetting } from '@vsleem-realsee-viewer/bimsee-plugin';
|
|
5
6
|
import { BimseeStore } from '@vsleem-realsee-viewer/bimsee-plugin';
|
|
@@ -11,9 +12,9 @@ import { ComponentOptionsBase } from 'vue';
|
|
|
11
12
|
import { ComponentOptionsMixin } from 'vue';
|
|
12
13
|
import { ComponentProvideOptions } from 'vue';
|
|
13
14
|
import { ComponentPublicInstance } from 'vue';
|
|
15
|
+
import { ComputedRef } from 'vue';
|
|
14
16
|
import { Coordinate } from '@vsleem-realsee-viewer/shared';
|
|
15
17
|
import { CreateComponentPublicInstanceWithMixins } from 'vue';
|
|
16
|
-
import { CSSProperties } from 'vue';
|
|
17
18
|
import { DebuggerEvent } from 'vue';
|
|
18
19
|
import { DefineComponent } from 'vue';
|
|
19
20
|
import { GlobalComponents } from 'vue';
|
|
@@ -26,6 +27,7 @@ import { nextTick } from 'vue';
|
|
|
26
27
|
import { OnCleanup } from '@vue/reactivity';
|
|
27
28
|
import { PlaybarElement } from '@vsleem-realsee-viewer/realsee-plugin';
|
|
28
29
|
import { PlaybarProps } from '@vsleem-realsee-viewer/realsee-plugin';
|
|
30
|
+
import { Point } from '@vsleem-realsee-viewer/shared';
|
|
29
31
|
import { Position } from '@vsleem-realsee-viewer/shared';
|
|
30
32
|
import { PublicProps } from 'vue';
|
|
31
33
|
import { RealseeElement } from '@vsleem-realsee-viewer/realsee-plugin';
|
|
@@ -41,6 +43,7 @@ import { TrackPoint } from '@vsleem-realsee-viewer/realsee-plugin';
|
|
|
41
43
|
import { TrackRecord } from '@vsleem-realsee-viewer/realsee-plugin';
|
|
42
44
|
import { TrackRecordModel } from '@vsleem-realsee-viewer/realsee-plugin';
|
|
43
45
|
import { UpdatableBimseeProps } from '@vsleem-realsee-viewer/bimsee-plugin';
|
|
46
|
+
import { UpdatableViewerProps } from '@vsleem-realsee-viewer/bimsee-plugin';
|
|
44
47
|
import { Vector3 } from '@vsleem-realsee-viewer/shared';
|
|
45
48
|
import { ViewerElement } from '@vsleem-realsee-viewer/realsee-plugin';
|
|
46
49
|
import { ViewerElement as ViewerElement_2 } from '@vsleem-realsee-viewer/bimsee-plugin';
|
|
@@ -56,8 +59,7 @@ setState: (options: Partial<UpdatableDualseeProps>) => void;
|
|
|
56
59
|
getDualseeLock: () => LockElement | undefined;
|
|
57
60
|
getBasicRealsee: () => RealseeElement | undefined;
|
|
58
61
|
getReferRealsee: () => RealseeElement | undefined;
|
|
59
|
-
|
|
60
|
-
getReferRealseeStatus: () => RealseeProps | undefined;
|
|
62
|
+
getReferBimsee: () => BimseeElement | undefined;
|
|
61
63
|
toggleReferRealsee: () => void;
|
|
62
64
|
showReferRealsee: () => void;
|
|
63
65
|
hideReferRealsee: () => void;
|
|
@@ -126,11 +128,13 @@ setReferClosestPoint: (current: TrackPoint) => void;
|
|
|
126
128
|
"refer-playbar-step-updated": (...args: any[]) => void;
|
|
127
129
|
"bimsee-ready": (...args: any[]) => void;
|
|
128
130
|
"bimsee-change-model": (...args: any[]) => void;
|
|
131
|
+
"bimsee-viewer-ready": (...args: any[]) => void;
|
|
132
|
+
"bimsee-viewer-click": (...args: any[]) => void;
|
|
133
|
+
"bimsee-viewer-mousedown": (...args: any[]) => void;
|
|
134
|
+
"bimsee-viewer-zoom-updated": (...args: any[]) => void;
|
|
135
|
+
"bimsee-viewer-position-updated": (...args: any[]) => void;
|
|
136
|
+
"bimsee-viewer-point-updated": (...args: any[]) => void;
|
|
129
137
|
"refer-viewer-panorama-loaded": (...args: any[]) => void;
|
|
130
|
-
"bimsee-click": (...args: any[]) => void;
|
|
131
|
-
"bimsee-mousedown": (...args: any[]) => void;
|
|
132
|
-
"bimsee-zoom-updated": (...args: any[]) => void;
|
|
133
|
-
"bimsee-position-updated": (...args: any[]) => void;
|
|
134
138
|
}, string, PublicProps, Readonly<DualseeProps> & Readonly<{
|
|
135
139
|
"onFind-refer-closest-point"?: ((...args: any[]) => any) | undefined;
|
|
136
140
|
"onLock-locked-updated"?: ((...args: any[]) => any) | undefined;
|
|
@@ -192,24 +196,27 @@ setReferClosestPoint: (current: TrackPoint) => void;
|
|
|
192
196
|
"onRefer-playbar-step-updated"?: ((...args: any[]) => any) | undefined;
|
|
193
197
|
"onBimsee-ready"?: ((...args: any[]) => any) | undefined;
|
|
194
198
|
"onBimsee-change-model"?: ((...args: any[]) => any) | undefined;
|
|
199
|
+
"onBimsee-viewer-ready"?: ((...args: any[]) => any) | undefined;
|
|
200
|
+
"onBimsee-viewer-click"?: ((...args: any[]) => any) | undefined;
|
|
201
|
+
"onBimsee-viewer-mousedown"?: ((...args: any[]) => any) | undefined;
|
|
202
|
+
"onBimsee-viewer-zoom-updated"?: ((...args: any[]) => any) | undefined;
|
|
203
|
+
"onBimsee-viewer-position-updated"?: ((...args: any[]) => any) | undefined;
|
|
204
|
+
"onBimsee-viewer-point-updated"?: ((...args: any[]) => any) | undefined;
|
|
195
205
|
"onRefer-viewer-panorama-loaded"?: ((...args: any[]) => any) | undefined;
|
|
196
|
-
"onBimsee-click"?: ((...args: any[]) => any) | undefined;
|
|
197
|
-
"onBimsee-mousedown"?: ((...args: any[]) => any) | undefined;
|
|
198
|
-
"onBimsee-zoom-updated"?: ((...args: any[]) => any) | undefined;
|
|
199
|
-
"onBimsee-position-updated"?: ((...args: any[]) => any) | undefined;
|
|
200
206
|
}>, {
|
|
201
207
|
appSetting: AppSetting;
|
|
202
208
|
dualseeSetting: DualseeSetting;
|
|
203
209
|
dualseeLock: LockProps;
|
|
204
210
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
205
|
-
|
|
211
|
+
dualseeLockElRef: ({
|
|
206
212
|
$: ComponentInternalInstance;
|
|
207
213
|
$data: {};
|
|
208
214
|
$props: {
|
|
209
215
|
readonly locked?: boolean | undefined;
|
|
210
216
|
readonly distance?: number | undefined;
|
|
211
217
|
readonly showDistance?: boolean | undefined;
|
|
212
|
-
readonly
|
|
218
|
+
readonly enableMatchPoint?: boolean | undefined;
|
|
219
|
+
readonly maxMatchDistance?: number | undefined;
|
|
213
220
|
readonly "onDistance-updated"?: ((...args: any[]) => any) | undefined;
|
|
214
221
|
readonly "onLocked-updated"?: ((...args: any[]) => any) | undefined;
|
|
215
222
|
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
@@ -227,9 +234,7 @@ $parent: ComponentPublicInstance | null;
|
|
|
227
234
|
$host: Element | null;
|
|
228
235
|
$emit: ((event: "distance-updated", ...args: any[]) => void) & ((event: "locked-updated", ...args: any[]) => void);
|
|
229
236
|
$el: HTMLDivElement;
|
|
230
|
-
$options: ComponentOptionsBase<Readonly<LockProps & {
|
|
231
|
-
maxMatchDistance: number;
|
|
232
|
-
}> & Readonly<{
|
|
237
|
+
$options: ComponentOptionsBase<Readonly<LockProps> & Readonly<{
|
|
233
238
|
"onDistance-updated"?: ((...args: any[]) => any) | undefined;
|
|
234
239
|
"onLocked-updated"?: ((...args: any[]) => any) | undefined;
|
|
235
240
|
}>, {
|
|
@@ -260,9 +265,7 @@ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info:
|
|
|
260
265
|
$forceUpdate: () => void;
|
|
261
266
|
$nextTick: nextTick;
|
|
262
267
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
263
|
-
} & Readonly<{}> & Omit<Readonly<LockProps & {
|
|
264
|
-
maxMatchDistance: number;
|
|
265
|
-
}> & Readonly<{
|
|
268
|
+
} & Readonly<{}> & Omit<Readonly<LockProps> & Readonly<{
|
|
266
269
|
"onDistance-updated"?: ((...args: any[]) => any) | undefined;
|
|
267
270
|
"onLocked-updated"?: ((...args: any[]) => any) | undefined;
|
|
268
271
|
}>, "getState" | "setState" | "setDistance" | "setLocked"> & ShallowUnwrapRef< {
|
|
@@ -276,11 +279,15 @@ button?(_: {
|
|
|
276
279
|
locked?: boolean;
|
|
277
280
|
distance?: number;
|
|
278
281
|
showDistance?: boolean;
|
|
282
|
+
enableMatchPoint?: boolean;
|
|
283
|
+
maxMatchDistance?: number;
|
|
279
284
|
}): any;
|
|
280
285
|
distance?(_: {
|
|
281
286
|
locked?: boolean;
|
|
282
287
|
distance?: number;
|
|
283
288
|
showDistance?: boolean;
|
|
289
|
+
enableMatchPoint?: boolean;
|
|
290
|
+
maxMatchDistance?: number;
|
|
284
291
|
}): any;
|
|
285
292
|
};
|
|
286
293
|
}) | null;
|
|
@@ -374,6 +381,7 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
374
381
|
"onPlaybar-step-updated"?: ((...args: any[]) => any) | undefined;
|
|
375
382
|
"onPlaybar-select-point"?: ((...args: any[]) => any) | undefined;
|
|
376
383
|
}>, {
|
|
384
|
+
storeRef: ComputedRef<RealseeStore>;
|
|
377
385
|
getStore: () => RealseeStore;
|
|
378
386
|
getViewer: () => ViewerElement | undefined;
|
|
379
387
|
getMarker: () => MarkersPlugin | undefined;
|
|
@@ -472,7 +480,8 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
472
480
|
"onPlaybar-delay-updated"?: ((...args: any[]) => any) | undefined;
|
|
473
481
|
"onPlaybar-step-updated"?: ((...args: any[]) => any) | undefined;
|
|
474
482
|
"onPlaybar-select-point"?: ((...args: any[]) => any) | undefined;
|
|
475
|
-
}>, "map" | "immediate" | "getState" | "setState" | "appSetting" | "realseeSetting" | "playbar" | "getStore" | "getViewer" | "getMarker" | "getPlaybar" | "getMap" | "getOptions"> & ShallowUnwrapRef< {
|
|
483
|
+
}>, "map" | "immediate" | "getState" | "setState" | "appSetting" | "realseeSetting" | "playbar" | "storeRef" | "getStore" | "getViewer" | "getMarker" | "getPlaybar" | "getMap" | "getOptions"> & ShallowUnwrapRef< {
|
|
484
|
+
storeRef: ComputedRef<RealseeStore>;
|
|
476
485
|
getStore: () => RealseeStore;
|
|
477
486
|
getViewer: () => ViewerElement | undefined;
|
|
478
487
|
getMarker: () => MarkersPlugin | undefined;
|
|
@@ -484,126 +493,101 @@ setState: (options?: Partial<Partial<RealseeProps>>) => void;
|
|
|
484
493
|
}> & {} & ComponentCustomProperties & {} & {
|
|
485
494
|
$slots: {
|
|
486
495
|
mapExtra?(_: {
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
radarAngle: number;
|
|
498
|
-
onPointChange: (point: TrackPoint) => Promise<any>;
|
|
496
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
497
|
+
coordinateTree: Coordinate | undefined;
|
|
498
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
499
|
+
currentSpace: Coordinate | undefined;
|
|
500
|
+
currentModel: Coordinate | undefined;
|
|
501
|
+
currentRecord: TrackRecord | undefined;
|
|
502
|
+
currentPoint: TrackPoint | undefined;
|
|
503
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
504
|
+
currentMarker: TrackMarker | undefined;
|
|
505
|
+
state: Required<Partial<MapProps>>;
|
|
499
506
|
}): any;
|
|
500
507
|
mapLeft?(_: {
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
radarAngle: number;
|
|
512
|
-
onPointChange: (point: TrackPoint) => Promise<any>;
|
|
508
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
509
|
+
coordinateTree: Coordinate | undefined;
|
|
510
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
511
|
+
currentSpace: Coordinate | undefined;
|
|
512
|
+
currentModel: Coordinate | undefined;
|
|
513
|
+
currentRecord: TrackRecord | undefined;
|
|
514
|
+
currentPoint: TrackPoint | undefined;
|
|
515
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
516
|
+
currentMarker: TrackMarker | undefined;
|
|
517
|
+
state: Required<Partial<MapProps>>;
|
|
513
518
|
}): any;
|
|
514
519
|
mapRight?(_: {
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
radarAngle: number;
|
|
526
|
-
onPointChange: (point: TrackPoint) => Promise<any>;
|
|
520
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
521
|
+
coordinateTree: Coordinate | undefined;
|
|
522
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
523
|
+
currentSpace: Coordinate | undefined;
|
|
524
|
+
currentModel: Coordinate | undefined;
|
|
525
|
+
currentRecord: TrackRecord | undefined;
|
|
526
|
+
currentPoint: TrackPoint | undefined;
|
|
527
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
528
|
+
currentMarker: TrackMarker | undefined;
|
|
529
|
+
state: Required<Partial<MapProps>>;
|
|
527
530
|
}): any;
|
|
528
531
|
mapDefault?(_: {
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
radarAngle: number;
|
|
540
|
-
onPointChange: (point: TrackPoint) => Promise<any>;
|
|
532
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
533
|
+
coordinateTree: Coordinate | undefined;
|
|
534
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
535
|
+
currentSpace: Coordinate | undefined;
|
|
536
|
+
currentModel: Coordinate | undefined;
|
|
537
|
+
currentRecord: TrackRecord | undefined;
|
|
538
|
+
currentPoint: TrackPoint | undefined;
|
|
539
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
540
|
+
currentMarker: TrackMarker | undefined;
|
|
541
|
+
state: Required<Partial<MapProps>>;
|
|
541
542
|
}): any;
|
|
542
543
|
playbarSlider?(_: {
|
|
544
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
545
|
+
coordinateTree: Coordinate | undefined;
|
|
546
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
547
|
+
currentSpace: Coordinate | undefined;
|
|
548
|
+
currentModel: Coordinate | undefined;
|
|
543
549
|
currentRecord: TrackRecord | undefined;
|
|
544
550
|
currentPoint: TrackPoint | undefined;
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
showPlay: boolean;
|
|
549
|
-
showSpeed: boolean;
|
|
550
|
-
delay: number;
|
|
551
|
-
speed: number;
|
|
552
|
-
step: number;
|
|
551
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
552
|
+
currentMarker: TrackMarker | undefined;
|
|
553
|
+
state: Required<Partial<PlaybarProps>>;
|
|
553
554
|
}): any;
|
|
554
555
|
playbarBox?(_: {
|
|
556
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
557
|
+
coordinateTree: Coordinate | undefined;
|
|
558
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
559
|
+
currentSpace: Coordinate | undefined;
|
|
560
|
+
currentModel: Coordinate | undefined;
|
|
555
561
|
currentRecord: TrackRecord | undefined;
|
|
556
562
|
currentPoint: TrackPoint | undefined;
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
showPlay: boolean;
|
|
561
|
-
showSpeed: boolean;
|
|
562
|
-
delay: number;
|
|
563
|
-
speed: number;
|
|
564
|
-
step: number;
|
|
563
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
564
|
+
currentMarker: TrackMarker | undefined;
|
|
565
|
+
state: Required<Partial<PlaybarProps>>;
|
|
565
566
|
}): any;
|
|
566
567
|
playbarCaption?(_: {
|
|
567
|
-
|
|
568
|
+
state: Required<Partial<PlaybarProps>>;
|
|
568
569
|
currentPoint: TrackPoint | undefined;
|
|
569
|
-
count: number;
|
|
570
|
-
index: number;
|
|
571
|
-
style: CSSProperties;
|
|
572
|
-
showPlay: boolean;
|
|
573
|
-
showSpeed: boolean;
|
|
574
|
-
delay: number;
|
|
575
|
-
speed: number;
|
|
576
|
-
step: number;
|
|
577
570
|
}): any;
|
|
578
571
|
playbarButton?(_: {
|
|
579
|
-
|
|
572
|
+
state: Required<Partial<PlaybarProps>>;
|
|
580
573
|
currentPoint: TrackPoint | undefined;
|
|
581
|
-
count: number;
|
|
582
|
-
index: number;
|
|
583
|
-
style: CSSProperties;
|
|
584
|
-
showPlay: boolean;
|
|
585
|
-
showSpeed: boolean;
|
|
586
|
-
delay: number;
|
|
587
|
-
speed: number;
|
|
588
|
-
step: number;
|
|
589
574
|
}): any;
|
|
590
575
|
playbarDefault?(_: {
|
|
576
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
577
|
+
coordinateTree: Coordinate | undefined;
|
|
578
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
579
|
+
currentSpace: Coordinate | undefined;
|
|
580
|
+
currentModel: Coordinate | undefined;
|
|
591
581
|
currentRecord: TrackRecord | undefined;
|
|
592
582
|
currentPoint: TrackPoint | undefined;
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
showPlay: boolean;
|
|
597
|
-
showSpeed: boolean;
|
|
598
|
-
delay: number;
|
|
599
|
-
speed: number;
|
|
600
|
-
step: number;
|
|
583
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
584
|
+
currentMarker: TrackMarker | undefined;
|
|
585
|
+
state: Required<Partial<PlaybarProps>>;
|
|
601
586
|
}): any;
|
|
602
587
|
default?(_: {
|
|
603
588
|
dataSource: Map<string, TrackRecord>;
|
|
604
589
|
coordinateTree: Coordinate | undefined;
|
|
605
590
|
mappedCoordinateTree: Coordinate | undefined;
|
|
606
|
-
comCoordinate: Coordinate | undefined;
|
|
607
591
|
currentSpace: Coordinate | undefined;
|
|
608
592
|
currentModel: Coordinate | undefined;
|
|
609
593
|
currentRecord: TrackRecord | undefined;
|
|
@@ -703,6 +687,7 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
703
687
|
"onPlaybar-step-updated"?: ((...args: any[]) => any) | undefined;
|
|
704
688
|
"onPlaybar-select-point"?: ((...args: any[]) => any) | undefined;
|
|
705
689
|
}>, {
|
|
690
|
+
storeRef: ComputedRef<RealseeStore>;
|
|
706
691
|
getStore: () => RealseeStore;
|
|
707
692
|
getViewer: () => ViewerElement | undefined;
|
|
708
693
|
getMarker: () => MarkersPlugin | undefined;
|
|
@@ -801,7 +786,8 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
801
786
|
"onPlaybar-delay-updated"?: ((...args: any[]) => any) | undefined;
|
|
802
787
|
"onPlaybar-step-updated"?: ((...args: any[]) => any) | undefined;
|
|
803
788
|
"onPlaybar-select-point"?: ((...args: any[]) => any) | undefined;
|
|
804
|
-
}>, "map" | "immediate" | "getState" | "setState" | "appSetting" | "realseeSetting" | "playbar" | "getStore" | "getViewer" | "getMarker" | "getPlaybar" | "getMap" | "getOptions"> & ShallowUnwrapRef< {
|
|
789
|
+
}>, "map" | "immediate" | "getState" | "setState" | "appSetting" | "realseeSetting" | "playbar" | "storeRef" | "getStore" | "getViewer" | "getMarker" | "getPlaybar" | "getMap" | "getOptions"> & ShallowUnwrapRef< {
|
|
790
|
+
storeRef: ComputedRef<RealseeStore>;
|
|
805
791
|
getStore: () => RealseeStore;
|
|
806
792
|
getViewer: () => ViewerElement | undefined;
|
|
807
793
|
getMarker: () => MarkersPlugin | undefined;
|
|
@@ -813,126 +799,101 @@ setState: (options?: Partial<Partial<RealseeProps>>) => void;
|
|
|
813
799
|
}> & {} & ComponentCustomProperties & {} & {
|
|
814
800
|
$slots: {
|
|
815
801
|
mapExtra?(_: {
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
radarAngle: number;
|
|
827
|
-
onPointChange: (point: TrackPoint) => Promise<any>;
|
|
802
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
803
|
+
coordinateTree: Coordinate | undefined;
|
|
804
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
805
|
+
currentSpace: Coordinate | undefined;
|
|
806
|
+
currentModel: Coordinate | undefined;
|
|
807
|
+
currentRecord: TrackRecord | undefined;
|
|
808
|
+
currentPoint: TrackPoint | undefined;
|
|
809
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
810
|
+
currentMarker: TrackMarker | undefined;
|
|
811
|
+
state: Required<Partial<MapProps>>;
|
|
828
812
|
}): any;
|
|
829
813
|
mapLeft?(_: {
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
radarAngle: number;
|
|
841
|
-
onPointChange: (point: TrackPoint) => Promise<any>;
|
|
814
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
815
|
+
coordinateTree: Coordinate | undefined;
|
|
816
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
817
|
+
currentSpace: Coordinate | undefined;
|
|
818
|
+
currentModel: Coordinate | undefined;
|
|
819
|
+
currentRecord: TrackRecord | undefined;
|
|
820
|
+
currentPoint: TrackPoint | undefined;
|
|
821
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
822
|
+
currentMarker: TrackMarker | undefined;
|
|
823
|
+
state: Required<Partial<MapProps>>;
|
|
842
824
|
}): any;
|
|
843
825
|
mapRight?(_: {
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
radarAngle: number;
|
|
855
|
-
onPointChange: (point: TrackPoint) => Promise<any>;
|
|
826
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
827
|
+
coordinateTree: Coordinate | undefined;
|
|
828
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
829
|
+
currentSpace: Coordinate | undefined;
|
|
830
|
+
currentModel: Coordinate | undefined;
|
|
831
|
+
currentRecord: TrackRecord | undefined;
|
|
832
|
+
currentPoint: TrackPoint | undefined;
|
|
833
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
834
|
+
currentMarker: TrackMarker | undefined;
|
|
835
|
+
state: Required<Partial<MapProps>>;
|
|
856
836
|
}): any;
|
|
857
837
|
mapDefault?(_: {
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
radarAngle: number;
|
|
869
|
-
onPointChange: (point: TrackPoint) => Promise<any>;
|
|
838
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
839
|
+
coordinateTree: Coordinate | undefined;
|
|
840
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
841
|
+
currentSpace: Coordinate | undefined;
|
|
842
|
+
currentModel: Coordinate | undefined;
|
|
843
|
+
currentRecord: TrackRecord | undefined;
|
|
844
|
+
currentPoint: TrackPoint | undefined;
|
|
845
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
846
|
+
currentMarker: TrackMarker | undefined;
|
|
847
|
+
state: Required<Partial<MapProps>>;
|
|
870
848
|
}): any;
|
|
871
849
|
playbarSlider?(_: {
|
|
850
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
851
|
+
coordinateTree: Coordinate | undefined;
|
|
852
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
853
|
+
currentSpace: Coordinate | undefined;
|
|
854
|
+
currentModel: Coordinate | undefined;
|
|
872
855
|
currentRecord: TrackRecord | undefined;
|
|
873
856
|
currentPoint: TrackPoint | undefined;
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
showPlay: boolean;
|
|
878
|
-
showSpeed: boolean;
|
|
879
|
-
delay: number;
|
|
880
|
-
speed: number;
|
|
881
|
-
step: number;
|
|
857
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
858
|
+
currentMarker: TrackMarker | undefined;
|
|
859
|
+
state: Required<Partial<PlaybarProps>>;
|
|
882
860
|
}): any;
|
|
883
861
|
playbarBox?(_: {
|
|
862
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
863
|
+
coordinateTree: Coordinate | undefined;
|
|
864
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
865
|
+
currentSpace: Coordinate | undefined;
|
|
866
|
+
currentModel: Coordinate | undefined;
|
|
884
867
|
currentRecord: TrackRecord | undefined;
|
|
885
868
|
currentPoint: TrackPoint | undefined;
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
showPlay: boolean;
|
|
890
|
-
showSpeed: boolean;
|
|
891
|
-
delay: number;
|
|
892
|
-
speed: number;
|
|
893
|
-
step: number;
|
|
869
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
870
|
+
currentMarker: TrackMarker | undefined;
|
|
871
|
+
state: Required<Partial<PlaybarProps>>;
|
|
894
872
|
}): any;
|
|
895
873
|
playbarCaption?(_: {
|
|
896
|
-
|
|
874
|
+
state: Required<Partial<PlaybarProps>>;
|
|
897
875
|
currentPoint: TrackPoint | undefined;
|
|
898
|
-
count: number;
|
|
899
|
-
index: number;
|
|
900
|
-
style: CSSProperties;
|
|
901
|
-
showPlay: boolean;
|
|
902
|
-
showSpeed: boolean;
|
|
903
|
-
delay: number;
|
|
904
|
-
speed: number;
|
|
905
|
-
step: number;
|
|
906
876
|
}): any;
|
|
907
877
|
playbarButton?(_: {
|
|
908
|
-
|
|
878
|
+
state: Required<Partial<PlaybarProps>>;
|
|
909
879
|
currentPoint: TrackPoint | undefined;
|
|
910
|
-
count: number;
|
|
911
|
-
index: number;
|
|
912
|
-
style: CSSProperties;
|
|
913
|
-
showPlay: boolean;
|
|
914
|
-
showSpeed: boolean;
|
|
915
|
-
delay: number;
|
|
916
|
-
speed: number;
|
|
917
|
-
step: number;
|
|
918
880
|
}): any;
|
|
919
881
|
playbarDefault?(_: {
|
|
882
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
883
|
+
coordinateTree: Coordinate | undefined;
|
|
884
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
885
|
+
currentSpace: Coordinate | undefined;
|
|
886
|
+
currentModel: Coordinate | undefined;
|
|
920
887
|
currentRecord: TrackRecord | undefined;
|
|
921
888
|
currentPoint: TrackPoint | undefined;
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
showPlay: boolean;
|
|
926
|
-
showSpeed: boolean;
|
|
927
|
-
delay: number;
|
|
928
|
-
speed: number;
|
|
929
|
-
step: number;
|
|
889
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
890
|
+
currentMarker: TrackMarker | undefined;
|
|
891
|
+
state: Required<Partial<PlaybarProps>>;
|
|
930
892
|
}): any;
|
|
931
893
|
default?(_: {
|
|
932
894
|
dataSource: Map<string, TrackRecord>;
|
|
933
895
|
coordinateTree: Coordinate | undefined;
|
|
934
896
|
mappedCoordinateTree: Coordinate | undefined;
|
|
935
|
-
comCoordinate: Coordinate | undefined;
|
|
936
897
|
currentSpace: Coordinate | undefined;
|
|
937
898
|
currentModel: Coordinate | undefined;
|
|
938
899
|
currentRecord: TrackRecord | undefined;
|
|
@@ -953,7 +914,7 @@ readonly viewer?: ViewerProps_2 | undefined;
|
|
|
953
914
|
readonly immediate?: boolean | undefined;
|
|
954
915
|
readonly delay?: number | undefined;
|
|
955
916
|
readonly handleCheckedFn?: ((res?: Coordinate) => Promise<boolean>) | undefined;
|
|
956
|
-
readonly handleResponseFn?: ((res?: Coordinate) => Promise<Coordinate>) | undefined;
|
|
917
|
+
readonly handleResponseFn?: ((res?: Coordinate) => Promise<Coordinate | undefined>) | undefined;
|
|
957
918
|
readonly fetchSuccess?: ((coordinate?: Coordinate) => void) | undefined;
|
|
958
919
|
readonly fetchError?: ((error: any) => void) | undefined;
|
|
959
920
|
readonly onReady?: ((...args: any[]) => any) | undefined | undefined;
|
|
@@ -984,6 +945,7 @@ onClick?: ((...args: any[]) => any) | undefined;
|
|
|
984
945
|
}>, {
|
|
985
946
|
isMoveover: () => boolean;
|
|
986
947
|
isMovedown: () => boolean;
|
|
948
|
+
setState: (options?: UpdatableViewerProps) => void;
|
|
987
949
|
setMovedown: (mousedown: boolean) => void;
|
|
988
950
|
setMoveover: (moveover: boolean) => void;
|
|
989
951
|
setMinFov: (minFov: number) => void;
|
|
@@ -1037,6 +999,7 @@ onClick?: ((...args: any[]) => any) | undefined;
|
|
|
1037
999
|
}>, {
|
|
1038
1000
|
isMoveover: () => boolean;
|
|
1039
1001
|
isMovedown: () => boolean;
|
|
1002
|
+
setState: (options?: UpdatableViewerProps) => void;
|
|
1040
1003
|
setMovedown: (mousedown: boolean) => void;
|
|
1041
1004
|
setMoveover: (moveover: boolean) => void;
|
|
1042
1005
|
setMinFov: (minFov: number) => void;
|
|
@@ -1081,6 +1044,7 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
1081
1044
|
"onViewer-point-updated"?: ((...args: any[]) => any) | undefined;
|
|
1082
1045
|
"onChange-model"?: ((...args: any[]) => any) | undefined;
|
|
1083
1046
|
}>, {
|
|
1047
|
+
storeRef: ComputedRef<BimseeStore>;
|
|
1084
1048
|
getStore: () => BimseeStore;
|
|
1085
1049
|
getViewer: () => ViewerElement_2 | undefined;
|
|
1086
1050
|
getState: () => BimseeProps;
|
|
@@ -1131,14 +1095,21 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
1131
1095
|
"onViewer-position-updated"?: ((...args: any[]) => any) | undefined;
|
|
1132
1096
|
"onViewer-point-updated"?: ((...args: any[]) => any) | undefined;
|
|
1133
1097
|
"onChange-model"?: ((...args: any[]) => any) | undefined;
|
|
1134
|
-
}>, "immediate" | "getState" | "setState" | "appSetting" | "viewer" | "getStore" | "getViewer"> & ShallowUnwrapRef< {
|
|
1098
|
+
}>, "immediate" | "getState" | "setState" | "appSetting" | "viewer" | "storeRef" | "getStore" | "getViewer"> & ShallowUnwrapRef< {
|
|
1099
|
+
storeRef: ComputedRef<BimseeStore>;
|
|
1135
1100
|
getStore: () => BimseeStore;
|
|
1136
1101
|
getViewer: () => ViewerElement_2 | undefined;
|
|
1137
1102
|
getState: () => BimseeProps;
|
|
1138
1103
|
setState: (options?: UpdatableBimseeProps) => void;
|
|
1139
1104
|
}> & {} & ComponentCustomProperties & {} & {
|
|
1140
1105
|
$slots: {
|
|
1141
|
-
default?(_: {
|
|
1106
|
+
default?(_: {
|
|
1107
|
+
coordinateTree: Coordinate | undefined;
|
|
1108
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
1109
|
+
currentSpace: Coordinate | undefined;
|
|
1110
|
+
currentModel: Coordinate | undefined;
|
|
1111
|
+
currentPoint: Point | undefined;
|
|
1112
|
+
}): any;
|
|
1142
1113
|
};
|
|
1143
1114
|
}) | null;
|
|
1144
1115
|
}, HTMLDivElement>;
|
|
@@ -1150,17 +1121,20 @@ declare function __VLS_template(): {
|
|
|
1150
1121
|
locked?: boolean;
|
|
1151
1122
|
distance?: number;
|
|
1152
1123
|
showDistance?: boolean;
|
|
1124
|
+
enableMatchPoint?: boolean;
|
|
1125
|
+
maxMatchDistance?: number;
|
|
1153
1126
|
}): any;
|
|
1154
1127
|
lockDistance?(_: {
|
|
1155
1128
|
locked?: boolean;
|
|
1156
1129
|
distance?: number;
|
|
1157
1130
|
showDistance?: boolean;
|
|
1131
|
+
enableMatchPoint?: boolean;
|
|
1132
|
+
maxMatchDistance?: number;
|
|
1158
1133
|
}): any;
|
|
1159
1134
|
basicDefault?(_: {
|
|
1160
1135
|
dataSource: Map<string, TrackRecord>;
|
|
1161
1136
|
coordinateTree: Coordinate | undefined;
|
|
1162
1137
|
mappedCoordinateTree: Coordinate | undefined;
|
|
1163
|
-
comCoordinate: Coordinate | undefined;
|
|
1164
1138
|
currentSpace: Coordinate | undefined;
|
|
1165
1139
|
currentModel: Coordinate | undefined;
|
|
1166
1140
|
currentRecord: TrackRecord | undefined;
|
|
@@ -1169,126 +1143,101 @@ declare function __VLS_template(): {
|
|
|
1169
1143
|
currentMarker: TrackMarker | undefined;
|
|
1170
1144
|
}): any;
|
|
1171
1145
|
basicMapDefault?(_: {
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
radarAngle: number;
|
|
1183
|
-
onPointChange: (point: TrackPoint) => Promise<any>;
|
|
1146
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
1147
|
+
coordinateTree: Coordinate | undefined;
|
|
1148
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
1149
|
+
currentSpace: Coordinate | undefined;
|
|
1150
|
+
currentModel: Coordinate | undefined;
|
|
1151
|
+
currentRecord: TrackRecord | undefined;
|
|
1152
|
+
currentPoint: TrackPoint | undefined;
|
|
1153
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
1154
|
+
currentMarker: TrackMarker | undefined;
|
|
1155
|
+
state: Required<Partial<MapProps>>;
|
|
1184
1156
|
}): any;
|
|
1185
1157
|
basicMapExtra?(_: {
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
radarAngle: number;
|
|
1197
|
-
onPointChange: (point: TrackPoint) => Promise<any>;
|
|
1158
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
1159
|
+
coordinateTree: Coordinate | undefined;
|
|
1160
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
1161
|
+
currentSpace: Coordinate | undefined;
|
|
1162
|
+
currentModel: Coordinate | undefined;
|
|
1163
|
+
currentRecord: TrackRecord | undefined;
|
|
1164
|
+
currentPoint: TrackPoint | undefined;
|
|
1165
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
1166
|
+
currentMarker: TrackMarker | undefined;
|
|
1167
|
+
state: Required<Partial<MapProps>>;
|
|
1198
1168
|
}): any;
|
|
1199
1169
|
basicMapLeft?(_: {
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
radarAngle: number;
|
|
1211
|
-
onPointChange: (point: TrackPoint) => Promise<any>;
|
|
1170
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
1171
|
+
coordinateTree: Coordinate | undefined;
|
|
1172
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
1173
|
+
currentSpace: Coordinate | undefined;
|
|
1174
|
+
currentModel: Coordinate | undefined;
|
|
1175
|
+
currentRecord: TrackRecord | undefined;
|
|
1176
|
+
currentPoint: TrackPoint | undefined;
|
|
1177
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
1178
|
+
currentMarker: TrackMarker | undefined;
|
|
1179
|
+
state: Required<Partial<MapProps>>;
|
|
1212
1180
|
}): any;
|
|
1213
1181
|
basicMapRight?(_: {
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
radarAngle: number;
|
|
1225
|
-
onPointChange: (point: TrackPoint) => Promise<any>;
|
|
1182
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
1183
|
+
coordinateTree: Coordinate | undefined;
|
|
1184
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
1185
|
+
currentSpace: Coordinate | undefined;
|
|
1186
|
+
currentModel: Coordinate | undefined;
|
|
1187
|
+
currentRecord: TrackRecord | undefined;
|
|
1188
|
+
currentPoint: TrackPoint | undefined;
|
|
1189
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
1190
|
+
currentMarker: TrackMarker | undefined;
|
|
1191
|
+
state: Required<Partial<MapProps>>;
|
|
1226
1192
|
}): any;
|
|
1227
1193
|
basicPlaybarDefault?(_: {
|
|
1194
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
1195
|
+
coordinateTree: Coordinate | undefined;
|
|
1196
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
1197
|
+
currentSpace: Coordinate | undefined;
|
|
1198
|
+
currentModel: Coordinate | undefined;
|
|
1228
1199
|
currentRecord: TrackRecord | undefined;
|
|
1229
1200
|
currentPoint: TrackPoint | undefined;
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
showPlay: boolean;
|
|
1234
|
-
showSpeed: boolean;
|
|
1235
|
-
delay: number;
|
|
1236
|
-
speed: number;
|
|
1237
|
-
step: number;
|
|
1201
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
1202
|
+
currentMarker: TrackMarker | undefined;
|
|
1203
|
+
state: Required<Partial<PlaybarProps>>;
|
|
1238
1204
|
}): any;
|
|
1239
1205
|
basicPlaybarBox?(_: {
|
|
1206
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
1207
|
+
coordinateTree: Coordinate | undefined;
|
|
1208
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
1209
|
+
currentSpace: Coordinate | undefined;
|
|
1210
|
+
currentModel: Coordinate | undefined;
|
|
1240
1211
|
currentRecord: TrackRecord | undefined;
|
|
1241
1212
|
currentPoint: TrackPoint | undefined;
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
showPlay: boolean;
|
|
1246
|
-
showSpeed: boolean;
|
|
1247
|
-
delay: number;
|
|
1248
|
-
speed: number;
|
|
1249
|
-
step: number;
|
|
1213
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
1214
|
+
currentMarker: TrackMarker | undefined;
|
|
1215
|
+
state: Required<Partial<PlaybarProps>>;
|
|
1250
1216
|
}): any;
|
|
1251
1217
|
basicPlaybarButton?(_: {
|
|
1252
|
-
|
|
1218
|
+
state: Required<Partial<PlaybarProps>>;
|
|
1253
1219
|
currentPoint: TrackPoint | undefined;
|
|
1254
|
-
count: number;
|
|
1255
|
-
index: number;
|
|
1256
|
-
style: CSSProperties;
|
|
1257
|
-
showPlay: boolean;
|
|
1258
|
-
showSpeed: boolean;
|
|
1259
|
-
delay: number;
|
|
1260
|
-
speed: number;
|
|
1261
|
-
step: number;
|
|
1262
1220
|
}): any;
|
|
1263
1221
|
basicPlaybarCaption?(_: {
|
|
1264
|
-
|
|
1222
|
+
state: Required<Partial<PlaybarProps>>;
|
|
1265
1223
|
currentPoint: TrackPoint | undefined;
|
|
1266
|
-
count: number;
|
|
1267
|
-
index: number;
|
|
1268
|
-
style: CSSProperties;
|
|
1269
|
-
showPlay: boolean;
|
|
1270
|
-
showSpeed: boolean;
|
|
1271
|
-
delay: number;
|
|
1272
|
-
speed: number;
|
|
1273
|
-
step: number;
|
|
1274
1224
|
}): any;
|
|
1275
1225
|
basicPlaybarSlider?(_: {
|
|
1226
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
1227
|
+
coordinateTree: Coordinate | undefined;
|
|
1228
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
1229
|
+
currentSpace: Coordinate | undefined;
|
|
1230
|
+
currentModel: Coordinate | undefined;
|
|
1276
1231
|
currentRecord: TrackRecord | undefined;
|
|
1277
1232
|
currentPoint: TrackPoint | undefined;
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
showPlay: boolean;
|
|
1282
|
-
showSpeed: boolean;
|
|
1283
|
-
delay: number;
|
|
1284
|
-
speed: number;
|
|
1285
|
-
step: number;
|
|
1233
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
1234
|
+
currentMarker: TrackMarker | undefined;
|
|
1235
|
+
state: Required<Partial<PlaybarProps>>;
|
|
1286
1236
|
}): any;
|
|
1287
1237
|
referDefault?(_: {
|
|
1288
1238
|
dataSource: Map<string, TrackRecord>;
|
|
1289
1239
|
coordinateTree: Coordinate | undefined;
|
|
1290
1240
|
mappedCoordinateTree: Coordinate | undefined;
|
|
1291
|
-
comCoordinate: Coordinate | undefined;
|
|
1292
1241
|
currentSpace: Coordinate | undefined;
|
|
1293
1242
|
currentModel: Coordinate | undefined;
|
|
1294
1243
|
currentRecord: TrackRecord | undefined;
|
|
@@ -1297,133 +1246,126 @@ declare function __VLS_template(): {
|
|
|
1297
1246
|
currentMarker: TrackMarker | undefined;
|
|
1298
1247
|
}): any;
|
|
1299
1248
|
referMapDefault?(_: {
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
radarAngle: number;
|
|
1311
|
-
onPointChange: (point: TrackPoint) => Promise<any>;
|
|
1249
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
1250
|
+
coordinateTree: Coordinate | undefined;
|
|
1251
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
1252
|
+
currentSpace: Coordinate | undefined;
|
|
1253
|
+
currentModel: Coordinate | undefined;
|
|
1254
|
+
currentRecord: TrackRecord | undefined;
|
|
1255
|
+
currentPoint: TrackPoint | undefined;
|
|
1256
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
1257
|
+
currentMarker: TrackMarker | undefined;
|
|
1258
|
+
state: Required<Partial<MapProps>>;
|
|
1312
1259
|
}): any;
|
|
1313
1260
|
referMapExtra?(_: {
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
radarAngle: number;
|
|
1325
|
-
onPointChange: (point: TrackPoint) => Promise<any>;
|
|
1261
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
1262
|
+
coordinateTree: Coordinate | undefined;
|
|
1263
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
1264
|
+
currentSpace: Coordinate | undefined;
|
|
1265
|
+
currentModel: Coordinate | undefined;
|
|
1266
|
+
currentRecord: TrackRecord | undefined;
|
|
1267
|
+
currentPoint: TrackPoint | undefined;
|
|
1268
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
1269
|
+
currentMarker: TrackMarker | undefined;
|
|
1270
|
+
state: Required<Partial<MapProps>>;
|
|
1326
1271
|
}): any;
|
|
1327
1272
|
referMapLeft?(_: {
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
radarAngle: number;
|
|
1339
|
-
onPointChange: (point: TrackPoint) => Promise<any>;
|
|
1273
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
1274
|
+
coordinateTree: Coordinate | undefined;
|
|
1275
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
1276
|
+
currentSpace: Coordinate | undefined;
|
|
1277
|
+
currentModel: Coordinate | undefined;
|
|
1278
|
+
currentRecord: TrackRecord | undefined;
|
|
1279
|
+
currentPoint: TrackPoint | undefined;
|
|
1280
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
1281
|
+
currentMarker: TrackMarker | undefined;
|
|
1282
|
+
state: Required<Partial<MapProps>>;
|
|
1340
1283
|
}): any;
|
|
1341
1284
|
referMapRight?(_: {
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
radarAngle: number;
|
|
1353
|
-
onPointChange: (point: TrackPoint) => Promise<any>;
|
|
1285
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
1286
|
+
coordinateTree: Coordinate | undefined;
|
|
1287
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
1288
|
+
currentSpace: Coordinate | undefined;
|
|
1289
|
+
currentModel: Coordinate | undefined;
|
|
1290
|
+
currentRecord: TrackRecord | undefined;
|
|
1291
|
+
currentPoint: TrackPoint | undefined;
|
|
1292
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
1293
|
+
currentMarker: TrackMarker | undefined;
|
|
1294
|
+
state: Required<Partial<MapProps>>;
|
|
1354
1295
|
}): any;
|
|
1355
1296
|
referPlaybarDefault?(_: {
|
|
1297
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
1298
|
+
coordinateTree: Coordinate | undefined;
|
|
1299
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
1300
|
+
currentSpace: Coordinate | undefined;
|
|
1301
|
+
currentModel: Coordinate | undefined;
|
|
1356
1302
|
currentRecord: TrackRecord | undefined;
|
|
1357
1303
|
currentPoint: TrackPoint | undefined;
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
showPlay: boolean;
|
|
1362
|
-
showSpeed: boolean;
|
|
1363
|
-
delay: number;
|
|
1364
|
-
speed: number;
|
|
1365
|
-
step: number;
|
|
1304
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
1305
|
+
currentMarker: TrackMarker | undefined;
|
|
1306
|
+
state: Required<Partial<PlaybarProps>>;
|
|
1366
1307
|
}): any;
|
|
1367
1308
|
referPlaybarBox?(_: {
|
|
1309
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
1310
|
+
coordinateTree: Coordinate | undefined;
|
|
1311
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
1312
|
+
currentSpace: Coordinate | undefined;
|
|
1313
|
+
currentModel: Coordinate | undefined;
|
|
1368
1314
|
currentRecord: TrackRecord | undefined;
|
|
1369
1315
|
currentPoint: TrackPoint | undefined;
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
showPlay: boolean;
|
|
1374
|
-
showSpeed: boolean;
|
|
1375
|
-
delay: number;
|
|
1376
|
-
speed: number;
|
|
1377
|
-
step: number;
|
|
1316
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
1317
|
+
currentMarker: TrackMarker | undefined;
|
|
1318
|
+
state: Required<Partial<PlaybarProps>>;
|
|
1378
1319
|
}): any;
|
|
1379
1320
|
referPlaybarButton?(_: {
|
|
1380
|
-
|
|
1321
|
+
state: Required<Partial<PlaybarProps>>;
|
|
1381
1322
|
currentPoint: TrackPoint | undefined;
|
|
1382
|
-
count: number;
|
|
1383
|
-
index: number;
|
|
1384
|
-
style: CSSProperties;
|
|
1385
|
-
showPlay: boolean;
|
|
1386
|
-
showSpeed: boolean;
|
|
1387
|
-
delay: number;
|
|
1388
|
-
speed: number;
|
|
1389
|
-
step: number;
|
|
1390
1323
|
}): any;
|
|
1391
1324
|
referPlaybarCaption?(_: {
|
|
1392
|
-
|
|
1325
|
+
state: Required<Partial<PlaybarProps>>;
|
|
1393
1326
|
currentPoint: TrackPoint | undefined;
|
|
1394
|
-
count: number;
|
|
1395
|
-
index: number;
|
|
1396
|
-
style: CSSProperties;
|
|
1397
|
-
showPlay: boolean;
|
|
1398
|
-
showSpeed: boolean;
|
|
1399
|
-
delay: number;
|
|
1400
|
-
speed: number;
|
|
1401
|
-
step: number;
|
|
1402
1327
|
}): any;
|
|
1403
1328
|
referPlaybarSlider?(_: {
|
|
1329
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
1330
|
+
coordinateTree: Coordinate | undefined;
|
|
1331
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
1332
|
+
currentSpace: Coordinate | undefined;
|
|
1333
|
+
currentModel: Coordinate | undefined;
|
|
1404
1334
|
currentRecord: TrackRecord | undefined;
|
|
1405
1335
|
currentPoint: TrackPoint | undefined;
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1336
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
1337
|
+
currentMarker: TrackMarker | undefined;
|
|
1338
|
+
state: Required<Partial<PlaybarProps>>;
|
|
1339
|
+
}): any;
|
|
1340
|
+
bimseeDefault?(_: {
|
|
1341
|
+
coordinateTree: Coordinate | undefined;
|
|
1342
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
1343
|
+
currentSpace: Coordinate | undefined;
|
|
1344
|
+
currentModel: Coordinate | undefined;
|
|
1345
|
+
currentPoint: Point | undefined;
|
|
1346
|
+
}): any;
|
|
1347
|
+
default?(_: {
|
|
1348
|
+
appSetting?: AppSetting;
|
|
1349
|
+
dualseeSetting?: DualseeSetting;
|
|
1350
|
+
dualseeLock?: LockProps;
|
|
1351
|
+
basicRealsee: RealseeProps;
|
|
1352
|
+
referRealsee?: RealseeProps;
|
|
1353
|
+
referBimsee?: BimseeProps;
|
|
1354
|
+
dualseeLockVisible?: boolean;
|
|
1355
|
+
referRealseeVisible?: boolean;
|
|
1356
|
+
referBimseeVisible?: boolean;
|
|
1414
1357
|
}): any;
|
|
1415
|
-
bimseeDefault?(_: {}): any;
|
|
1416
|
-
default?(_: {}): any;
|
|
1417
1358
|
};
|
|
1418
1359
|
refs: {
|
|
1419
|
-
|
|
1360
|
+
dualseeLockElRef: ({
|
|
1420
1361
|
$: ComponentInternalInstance;
|
|
1421
1362
|
$data: {};
|
|
1422
1363
|
$props: {
|
|
1423
1364
|
readonly locked?: boolean | undefined;
|
|
1424
1365
|
readonly distance?: number | undefined;
|
|
1425
1366
|
readonly showDistance?: boolean | undefined;
|
|
1426
|
-
readonly
|
|
1367
|
+
readonly enableMatchPoint?: boolean | undefined;
|
|
1368
|
+
readonly maxMatchDistance?: number | undefined;
|
|
1427
1369
|
readonly "onDistance-updated"?: ((...args: any[]) => any) | undefined;
|
|
1428
1370
|
readonly "onLocked-updated"?: ((...args: any[]) => any) | undefined;
|
|
1429
1371
|
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
@@ -1441,9 +1383,7 @@ declare function __VLS_template(): {
|
|
|
1441
1383
|
$host: Element | null;
|
|
1442
1384
|
$emit: ((event: "distance-updated", ...args: any[]) => void) & ((event: "locked-updated", ...args: any[]) => void);
|
|
1443
1385
|
$el: HTMLDivElement;
|
|
1444
|
-
$options: ComponentOptionsBase<Readonly<LockProps & {
|
|
1445
|
-
maxMatchDistance: number;
|
|
1446
|
-
}> & Readonly<{
|
|
1386
|
+
$options: ComponentOptionsBase<Readonly<LockProps> & Readonly<{
|
|
1447
1387
|
"onDistance-updated"?: ((...args: any[]) => any) | undefined;
|
|
1448
1388
|
"onLocked-updated"?: ((...args: any[]) => any) | undefined;
|
|
1449
1389
|
}>, {
|
|
@@ -1474,9 +1414,7 @@ declare function __VLS_template(): {
|
|
|
1474
1414
|
$forceUpdate: () => void;
|
|
1475
1415
|
$nextTick: nextTick;
|
|
1476
1416
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
1477
|
-
} & Readonly<{}> & Omit<Readonly<LockProps & {
|
|
1478
|
-
maxMatchDistance: number;
|
|
1479
|
-
}> & Readonly<{
|
|
1417
|
+
} & Readonly<{}> & Omit<Readonly<LockProps> & Readonly<{
|
|
1480
1418
|
"onDistance-updated"?: ((...args: any[]) => any) | undefined;
|
|
1481
1419
|
"onLocked-updated"?: ((...args: any[]) => any) | undefined;
|
|
1482
1420
|
}>, "getState" | "setState" | "setDistance" | "setLocked"> & ShallowUnwrapRef< {
|
|
@@ -1490,11 +1428,15 @@ declare function __VLS_template(): {
|
|
|
1490
1428
|
locked?: boolean;
|
|
1491
1429
|
distance?: number;
|
|
1492
1430
|
showDistance?: boolean;
|
|
1431
|
+
enableMatchPoint?: boolean;
|
|
1432
|
+
maxMatchDistance?: number;
|
|
1493
1433
|
}): any;
|
|
1494
1434
|
distance?(_: {
|
|
1495
1435
|
locked?: boolean;
|
|
1496
1436
|
distance?: number;
|
|
1497
1437
|
showDistance?: boolean;
|
|
1438
|
+
enableMatchPoint?: boolean;
|
|
1439
|
+
maxMatchDistance?: number;
|
|
1498
1440
|
}): any;
|
|
1499
1441
|
};
|
|
1500
1442
|
}) | null;
|
|
@@ -1588,6 +1530,7 @@ declare function __VLS_template(): {
|
|
|
1588
1530
|
"onPlaybar-step-updated"?: ((...args: any[]) => any) | undefined;
|
|
1589
1531
|
"onPlaybar-select-point"?: ((...args: any[]) => any) | undefined;
|
|
1590
1532
|
}>, {
|
|
1533
|
+
storeRef: ComputedRef<RealseeStore>;
|
|
1591
1534
|
getStore: () => RealseeStore;
|
|
1592
1535
|
getViewer: () => ViewerElement | undefined;
|
|
1593
1536
|
getMarker: () => MarkersPlugin | undefined;
|
|
@@ -1686,7 +1629,8 @@ declare function __VLS_template(): {
|
|
|
1686
1629
|
"onPlaybar-delay-updated"?: ((...args: any[]) => any) | undefined;
|
|
1687
1630
|
"onPlaybar-step-updated"?: ((...args: any[]) => any) | undefined;
|
|
1688
1631
|
"onPlaybar-select-point"?: ((...args: any[]) => any) | undefined;
|
|
1689
|
-
}>, "map" | "immediate" | "getState" | "setState" | "appSetting" | "realseeSetting" | "playbar" | "getStore" | "getViewer" | "getMarker" | "getPlaybar" | "getMap" | "getOptions"> & ShallowUnwrapRef< {
|
|
1632
|
+
}>, "map" | "immediate" | "getState" | "setState" | "appSetting" | "realseeSetting" | "playbar" | "storeRef" | "getStore" | "getViewer" | "getMarker" | "getPlaybar" | "getMap" | "getOptions"> & ShallowUnwrapRef< {
|
|
1633
|
+
storeRef: ComputedRef<RealseeStore>;
|
|
1690
1634
|
getStore: () => RealseeStore;
|
|
1691
1635
|
getViewer: () => ViewerElement | undefined;
|
|
1692
1636
|
getMarker: () => MarkersPlugin | undefined;
|
|
@@ -1698,126 +1642,101 @@ declare function __VLS_template(): {
|
|
|
1698
1642
|
}> & {} & ComponentCustomProperties & {} & {
|
|
1699
1643
|
$slots: {
|
|
1700
1644
|
mapExtra?(_: {
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
radarAngle: number;
|
|
1712
|
-
onPointChange: (point: TrackPoint) => Promise<any>;
|
|
1645
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
1646
|
+
coordinateTree: Coordinate | undefined;
|
|
1647
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
1648
|
+
currentSpace: Coordinate | undefined;
|
|
1649
|
+
currentModel: Coordinate | undefined;
|
|
1650
|
+
currentRecord: TrackRecord | undefined;
|
|
1651
|
+
currentPoint: TrackPoint | undefined;
|
|
1652
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
1653
|
+
currentMarker: TrackMarker | undefined;
|
|
1654
|
+
state: Required<Partial<MapProps>>;
|
|
1713
1655
|
}): any;
|
|
1714
1656
|
mapLeft?(_: {
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
radarAngle: number;
|
|
1726
|
-
onPointChange: (point: TrackPoint) => Promise<any>;
|
|
1657
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
1658
|
+
coordinateTree: Coordinate | undefined;
|
|
1659
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
1660
|
+
currentSpace: Coordinate | undefined;
|
|
1661
|
+
currentModel: Coordinate | undefined;
|
|
1662
|
+
currentRecord: TrackRecord | undefined;
|
|
1663
|
+
currentPoint: TrackPoint | undefined;
|
|
1664
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
1665
|
+
currentMarker: TrackMarker | undefined;
|
|
1666
|
+
state: Required<Partial<MapProps>>;
|
|
1727
1667
|
}): any;
|
|
1728
1668
|
mapRight?(_: {
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
radarAngle: number;
|
|
1740
|
-
onPointChange: (point: TrackPoint) => Promise<any>;
|
|
1669
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
1670
|
+
coordinateTree: Coordinate | undefined;
|
|
1671
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
1672
|
+
currentSpace: Coordinate | undefined;
|
|
1673
|
+
currentModel: Coordinate | undefined;
|
|
1674
|
+
currentRecord: TrackRecord | undefined;
|
|
1675
|
+
currentPoint: TrackPoint | undefined;
|
|
1676
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
1677
|
+
currentMarker: TrackMarker | undefined;
|
|
1678
|
+
state: Required<Partial<MapProps>>;
|
|
1741
1679
|
}): any;
|
|
1742
1680
|
mapDefault?(_: {
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
radarAngle: number;
|
|
1754
|
-
onPointChange: (point: TrackPoint) => Promise<any>;
|
|
1681
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
1682
|
+
coordinateTree: Coordinate | undefined;
|
|
1683
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
1684
|
+
currentSpace: Coordinate | undefined;
|
|
1685
|
+
currentModel: Coordinate | undefined;
|
|
1686
|
+
currentRecord: TrackRecord | undefined;
|
|
1687
|
+
currentPoint: TrackPoint | undefined;
|
|
1688
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
1689
|
+
currentMarker: TrackMarker | undefined;
|
|
1690
|
+
state: Required<Partial<MapProps>>;
|
|
1755
1691
|
}): any;
|
|
1756
1692
|
playbarSlider?(_: {
|
|
1693
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
1694
|
+
coordinateTree: Coordinate | undefined;
|
|
1695
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
1696
|
+
currentSpace: Coordinate | undefined;
|
|
1697
|
+
currentModel: Coordinate | undefined;
|
|
1757
1698
|
currentRecord: TrackRecord | undefined;
|
|
1758
1699
|
currentPoint: TrackPoint | undefined;
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
showPlay: boolean;
|
|
1763
|
-
showSpeed: boolean;
|
|
1764
|
-
delay: number;
|
|
1765
|
-
speed: number;
|
|
1766
|
-
step: number;
|
|
1700
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
1701
|
+
currentMarker: TrackMarker | undefined;
|
|
1702
|
+
state: Required<Partial<PlaybarProps>>;
|
|
1767
1703
|
}): any;
|
|
1768
1704
|
playbarBox?(_: {
|
|
1705
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
1706
|
+
coordinateTree: Coordinate | undefined;
|
|
1707
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
1708
|
+
currentSpace: Coordinate | undefined;
|
|
1709
|
+
currentModel: Coordinate | undefined;
|
|
1769
1710
|
currentRecord: TrackRecord | undefined;
|
|
1770
1711
|
currentPoint: TrackPoint | undefined;
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
showPlay: boolean;
|
|
1775
|
-
showSpeed: boolean;
|
|
1776
|
-
delay: number;
|
|
1777
|
-
speed: number;
|
|
1778
|
-
step: number;
|
|
1712
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
1713
|
+
currentMarker: TrackMarker | undefined;
|
|
1714
|
+
state: Required<Partial<PlaybarProps>>;
|
|
1779
1715
|
}): any;
|
|
1780
1716
|
playbarCaption?(_: {
|
|
1781
|
-
|
|
1717
|
+
state: Required<Partial<PlaybarProps>>;
|
|
1782
1718
|
currentPoint: TrackPoint | undefined;
|
|
1783
|
-
count: number;
|
|
1784
|
-
index: number;
|
|
1785
|
-
style: CSSProperties;
|
|
1786
|
-
showPlay: boolean;
|
|
1787
|
-
showSpeed: boolean;
|
|
1788
|
-
delay: number;
|
|
1789
|
-
speed: number;
|
|
1790
|
-
step: number;
|
|
1791
1719
|
}): any;
|
|
1792
1720
|
playbarButton?(_: {
|
|
1793
|
-
|
|
1721
|
+
state: Required<Partial<PlaybarProps>>;
|
|
1794
1722
|
currentPoint: TrackPoint | undefined;
|
|
1795
|
-
count: number;
|
|
1796
|
-
index: number;
|
|
1797
|
-
style: CSSProperties;
|
|
1798
|
-
showPlay: boolean;
|
|
1799
|
-
showSpeed: boolean;
|
|
1800
|
-
delay: number;
|
|
1801
|
-
speed: number;
|
|
1802
|
-
step: number;
|
|
1803
1723
|
}): any;
|
|
1804
1724
|
playbarDefault?(_: {
|
|
1725
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
1726
|
+
coordinateTree: Coordinate | undefined;
|
|
1727
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
1728
|
+
currentSpace: Coordinate | undefined;
|
|
1729
|
+
currentModel: Coordinate | undefined;
|
|
1805
1730
|
currentRecord: TrackRecord | undefined;
|
|
1806
1731
|
currentPoint: TrackPoint | undefined;
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
|
|
1810
|
-
showPlay: boolean;
|
|
1811
|
-
showSpeed: boolean;
|
|
1812
|
-
delay: number;
|
|
1813
|
-
speed: number;
|
|
1814
|
-
step: number;
|
|
1732
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
1733
|
+
currentMarker: TrackMarker | undefined;
|
|
1734
|
+
state: Required<Partial<PlaybarProps>>;
|
|
1815
1735
|
}): any;
|
|
1816
1736
|
default?(_: {
|
|
1817
1737
|
dataSource: Map<string, TrackRecord>;
|
|
1818
1738
|
coordinateTree: Coordinate | undefined;
|
|
1819
1739
|
mappedCoordinateTree: Coordinate | undefined;
|
|
1820
|
-
comCoordinate: Coordinate | undefined;
|
|
1821
1740
|
currentSpace: Coordinate | undefined;
|
|
1822
1741
|
currentModel: Coordinate | undefined;
|
|
1823
1742
|
currentRecord: TrackRecord | undefined;
|
|
@@ -1917,6 +1836,7 @@ declare function __VLS_template(): {
|
|
|
1917
1836
|
"onPlaybar-step-updated"?: ((...args: any[]) => any) | undefined;
|
|
1918
1837
|
"onPlaybar-select-point"?: ((...args: any[]) => any) | undefined;
|
|
1919
1838
|
}>, {
|
|
1839
|
+
storeRef: ComputedRef<RealseeStore>;
|
|
1920
1840
|
getStore: () => RealseeStore;
|
|
1921
1841
|
getViewer: () => ViewerElement | undefined;
|
|
1922
1842
|
getMarker: () => MarkersPlugin | undefined;
|
|
@@ -2015,7 +1935,8 @@ declare function __VLS_template(): {
|
|
|
2015
1935
|
"onPlaybar-delay-updated"?: ((...args: any[]) => any) | undefined;
|
|
2016
1936
|
"onPlaybar-step-updated"?: ((...args: any[]) => any) | undefined;
|
|
2017
1937
|
"onPlaybar-select-point"?: ((...args: any[]) => any) | undefined;
|
|
2018
|
-
}>, "map" | "immediate" | "getState" | "setState" | "appSetting" | "realseeSetting" | "playbar" | "getStore" | "getViewer" | "getMarker" | "getPlaybar" | "getMap" | "getOptions"> & ShallowUnwrapRef< {
|
|
1938
|
+
}>, "map" | "immediate" | "getState" | "setState" | "appSetting" | "realseeSetting" | "playbar" | "storeRef" | "getStore" | "getViewer" | "getMarker" | "getPlaybar" | "getMap" | "getOptions"> & ShallowUnwrapRef< {
|
|
1939
|
+
storeRef: ComputedRef<RealseeStore>;
|
|
2019
1940
|
getStore: () => RealseeStore;
|
|
2020
1941
|
getViewer: () => ViewerElement | undefined;
|
|
2021
1942
|
getMarker: () => MarkersPlugin | undefined;
|
|
@@ -2027,126 +1948,101 @@ declare function __VLS_template(): {
|
|
|
2027
1948
|
}> & {} & ComponentCustomProperties & {} & {
|
|
2028
1949
|
$slots: {
|
|
2029
1950
|
mapExtra?(_: {
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
radarAngle: number;
|
|
2041
|
-
onPointChange: (point: TrackPoint) => Promise<any>;
|
|
1951
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
1952
|
+
coordinateTree: Coordinate | undefined;
|
|
1953
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
1954
|
+
currentSpace: Coordinate | undefined;
|
|
1955
|
+
currentModel: Coordinate | undefined;
|
|
1956
|
+
currentRecord: TrackRecord | undefined;
|
|
1957
|
+
currentPoint: TrackPoint | undefined;
|
|
1958
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
1959
|
+
currentMarker: TrackMarker | undefined;
|
|
1960
|
+
state: Required<Partial<MapProps>>;
|
|
2042
1961
|
}): any;
|
|
2043
1962
|
mapLeft?(_: {
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
|
|
2053
|
-
|
|
2054
|
-
radarAngle: number;
|
|
2055
|
-
onPointChange: (point: TrackPoint) => Promise<any>;
|
|
1963
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
1964
|
+
coordinateTree: Coordinate | undefined;
|
|
1965
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
1966
|
+
currentSpace: Coordinate | undefined;
|
|
1967
|
+
currentModel: Coordinate | undefined;
|
|
1968
|
+
currentRecord: TrackRecord | undefined;
|
|
1969
|
+
currentPoint: TrackPoint | undefined;
|
|
1970
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
1971
|
+
currentMarker: TrackMarker | undefined;
|
|
1972
|
+
state: Required<Partial<MapProps>>;
|
|
2056
1973
|
}): any;
|
|
2057
1974
|
mapRight?(_: {
|
|
2058
|
-
|
|
2059
|
-
|
|
2060
|
-
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
|
|
2066
|
-
|
|
2067
|
-
|
|
2068
|
-
radarAngle: number;
|
|
2069
|
-
onPointChange: (point: TrackPoint) => Promise<any>;
|
|
1975
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
1976
|
+
coordinateTree: Coordinate | undefined;
|
|
1977
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
1978
|
+
currentSpace: Coordinate | undefined;
|
|
1979
|
+
currentModel: Coordinate | undefined;
|
|
1980
|
+
currentRecord: TrackRecord | undefined;
|
|
1981
|
+
currentPoint: TrackPoint | undefined;
|
|
1982
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
1983
|
+
currentMarker: TrackMarker | undefined;
|
|
1984
|
+
state: Required<Partial<MapProps>>;
|
|
2070
1985
|
}): any;
|
|
2071
1986
|
mapDefault?(_: {
|
|
2072
|
-
|
|
2073
|
-
|
|
2074
|
-
|
|
2075
|
-
|
|
2076
|
-
|
|
2077
|
-
|
|
2078
|
-
|
|
2079
|
-
|
|
2080
|
-
|
|
2081
|
-
|
|
2082
|
-
radarAngle: number;
|
|
2083
|
-
onPointChange: (point: TrackPoint) => Promise<any>;
|
|
1987
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
1988
|
+
coordinateTree: Coordinate | undefined;
|
|
1989
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
1990
|
+
currentSpace: Coordinate | undefined;
|
|
1991
|
+
currentModel: Coordinate | undefined;
|
|
1992
|
+
currentRecord: TrackRecord | undefined;
|
|
1993
|
+
currentPoint: TrackPoint | undefined;
|
|
1994
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
1995
|
+
currentMarker: TrackMarker | undefined;
|
|
1996
|
+
state: Required<Partial<MapProps>>;
|
|
2084
1997
|
}): any;
|
|
2085
1998
|
playbarSlider?(_: {
|
|
1999
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
2000
|
+
coordinateTree: Coordinate | undefined;
|
|
2001
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
2002
|
+
currentSpace: Coordinate | undefined;
|
|
2003
|
+
currentModel: Coordinate | undefined;
|
|
2086
2004
|
currentRecord: TrackRecord | undefined;
|
|
2087
2005
|
currentPoint: TrackPoint | undefined;
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2091
|
-
showPlay: boolean;
|
|
2092
|
-
showSpeed: boolean;
|
|
2093
|
-
delay: number;
|
|
2094
|
-
speed: number;
|
|
2095
|
-
step: number;
|
|
2006
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
2007
|
+
currentMarker: TrackMarker | undefined;
|
|
2008
|
+
state: Required<Partial<PlaybarProps>>;
|
|
2096
2009
|
}): any;
|
|
2097
2010
|
playbarBox?(_: {
|
|
2011
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
2012
|
+
coordinateTree: Coordinate | undefined;
|
|
2013
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
2014
|
+
currentSpace: Coordinate | undefined;
|
|
2015
|
+
currentModel: Coordinate | undefined;
|
|
2098
2016
|
currentRecord: TrackRecord | undefined;
|
|
2099
2017
|
currentPoint: TrackPoint | undefined;
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
|
|
2103
|
-
showPlay: boolean;
|
|
2104
|
-
showSpeed: boolean;
|
|
2105
|
-
delay: number;
|
|
2106
|
-
speed: number;
|
|
2107
|
-
step: number;
|
|
2018
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
2019
|
+
currentMarker: TrackMarker | undefined;
|
|
2020
|
+
state: Required<Partial<PlaybarProps>>;
|
|
2108
2021
|
}): any;
|
|
2109
2022
|
playbarCaption?(_: {
|
|
2110
|
-
|
|
2023
|
+
state: Required<Partial<PlaybarProps>>;
|
|
2111
2024
|
currentPoint: TrackPoint | undefined;
|
|
2112
|
-
count: number;
|
|
2113
|
-
index: number;
|
|
2114
|
-
style: CSSProperties;
|
|
2115
|
-
showPlay: boolean;
|
|
2116
|
-
showSpeed: boolean;
|
|
2117
|
-
delay: number;
|
|
2118
|
-
speed: number;
|
|
2119
|
-
step: number;
|
|
2120
2025
|
}): any;
|
|
2121
2026
|
playbarButton?(_: {
|
|
2122
|
-
|
|
2027
|
+
state: Required<Partial<PlaybarProps>>;
|
|
2123
2028
|
currentPoint: TrackPoint | undefined;
|
|
2124
|
-
count: number;
|
|
2125
|
-
index: number;
|
|
2126
|
-
style: CSSProperties;
|
|
2127
|
-
showPlay: boolean;
|
|
2128
|
-
showSpeed: boolean;
|
|
2129
|
-
delay: number;
|
|
2130
|
-
speed: number;
|
|
2131
|
-
step: number;
|
|
2132
2029
|
}): any;
|
|
2133
2030
|
playbarDefault?(_: {
|
|
2031
|
+
dataSource: Map<string, TrackRecord> | undefined;
|
|
2032
|
+
coordinateTree: Coordinate | undefined;
|
|
2033
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
2034
|
+
currentSpace: Coordinate | undefined;
|
|
2035
|
+
currentModel: Coordinate | undefined;
|
|
2134
2036
|
currentRecord: TrackRecord | undefined;
|
|
2135
2037
|
currentPoint: TrackPoint | undefined;
|
|
2136
|
-
|
|
2137
|
-
|
|
2138
|
-
|
|
2139
|
-
showPlay: boolean;
|
|
2140
|
-
showSpeed: boolean;
|
|
2141
|
-
delay: number;
|
|
2142
|
-
speed: number;
|
|
2143
|
-
step: number;
|
|
2038
|
+
currentPointMarkers: TrackMarker[] | undefined;
|
|
2039
|
+
currentMarker: TrackMarker | undefined;
|
|
2040
|
+
state: Required<Partial<PlaybarProps>>;
|
|
2144
2041
|
}): any;
|
|
2145
2042
|
default?(_: {
|
|
2146
2043
|
dataSource: Map<string, TrackRecord>;
|
|
2147
2044
|
coordinateTree: Coordinate | undefined;
|
|
2148
2045
|
mappedCoordinateTree: Coordinate | undefined;
|
|
2149
|
-
comCoordinate: Coordinate | undefined;
|
|
2150
2046
|
currentSpace: Coordinate | undefined;
|
|
2151
2047
|
currentModel: Coordinate | undefined;
|
|
2152
2048
|
currentRecord: TrackRecord | undefined;
|
|
@@ -2167,7 +2063,7 @@ declare function __VLS_template(): {
|
|
|
2167
2063
|
readonly immediate?: boolean | undefined;
|
|
2168
2064
|
readonly delay?: number | undefined;
|
|
2169
2065
|
readonly handleCheckedFn?: ((res?: Coordinate) => Promise<boolean>) | undefined;
|
|
2170
|
-
readonly handleResponseFn?: ((res?: Coordinate) => Promise<Coordinate>) | undefined;
|
|
2066
|
+
readonly handleResponseFn?: ((res?: Coordinate) => Promise<Coordinate | undefined>) | undefined;
|
|
2171
2067
|
readonly fetchSuccess?: ((coordinate?: Coordinate) => void) | undefined;
|
|
2172
2068
|
readonly fetchError?: ((error: any) => void) | undefined;
|
|
2173
2069
|
readonly onReady?: ((...args: any[]) => any) | undefined | undefined;
|
|
@@ -2198,6 +2094,7 @@ declare function __VLS_template(): {
|
|
|
2198
2094
|
}>, {
|
|
2199
2095
|
isMoveover: () => boolean;
|
|
2200
2096
|
isMovedown: () => boolean;
|
|
2097
|
+
setState: (options?: UpdatableViewerProps) => void;
|
|
2201
2098
|
setMovedown: (mousedown: boolean) => void;
|
|
2202
2099
|
setMoveover: (moveover: boolean) => void;
|
|
2203
2100
|
setMinFov: (minFov: number) => void;
|
|
@@ -2251,6 +2148,7 @@ declare function __VLS_template(): {
|
|
|
2251
2148
|
}>, {
|
|
2252
2149
|
isMoveover: () => boolean;
|
|
2253
2150
|
isMovedown: () => boolean;
|
|
2151
|
+
setState: (options?: UpdatableViewerProps) => void;
|
|
2254
2152
|
setMovedown: (mousedown: boolean) => void;
|
|
2255
2153
|
setMoveover: (moveover: boolean) => void;
|
|
2256
2154
|
setMinFov: (minFov: number) => void;
|
|
@@ -2295,6 +2193,7 @@ declare function __VLS_template(): {
|
|
|
2295
2193
|
"onViewer-point-updated"?: ((...args: any[]) => any) | undefined;
|
|
2296
2194
|
"onChange-model"?: ((...args: any[]) => any) | undefined;
|
|
2297
2195
|
}>, {
|
|
2196
|
+
storeRef: ComputedRef<BimseeStore>;
|
|
2298
2197
|
getStore: () => BimseeStore;
|
|
2299
2198
|
getViewer: () => ViewerElement_2 | undefined;
|
|
2300
2199
|
getState: () => BimseeProps;
|
|
@@ -2345,14 +2244,21 @@ declare function __VLS_template(): {
|
|
|
2345
2244
|
"onViewer-position-updated"?: ((...args: any[]) => any) | undefined;
|
|
2346
2245
|
"onViewer-point-updated"?: ((...args: any[]) => any) | undefined;
|
|
2347
2246
|
"onChange-model"?: ((...args: any[]) => any) | undefined;
|
|
2348
|
-
}>, "immediate" | "getState" | "setState" | "appSetting" | "viewer" | "getStore" | "getViewer"> & ShallowUnwrapRef< {
|
|
2247
|
+
}>, "immediate" | "getState" | "setState" | "appSetting" | "viewer" | "storeRef" | "getStore" | "getViewer"> & ShallowUnwrapRef< {
|
|
2248
|
+
storeRef: ComputedRef<BimseeStore>;
|
|
2349
2249
|
getStore: () => BimseeStore;
|
|
2350
2250
|
getViewer: () => ViewerElement_2 | undefined;
|
|
2351
2251
|
getState: () => BimseeProps;
|
|
2352
2252
|
setState: (options?: UpdatableBimseeProps) => void;
|
|
2353
2253
|
}> & {} & ComponentCustomProperties & {} & {
|
|
2354
2254
|
$slots: {
|
|
2355
|
-
default?(_: {
|
|
2255
|
+
default?(_: {
|
|
2256
|
+
coordinateTree: Coordinate | undefined;
|
|
2257
|
+
mappedCoordinateTree: Coordinate | undefined;
|
|
2258
|
+
currentSpace: Coordinate | undefined;
|
|
2259
|
+
currentModel: Coordinate | undefined;
|
|
2260
|
+
currentPoint: Point | undefined;
|
|
2261
|
+
}): any;
|
|
2356
2262
|
};
|
|
2357
2263
|
}) | null;
|
|
2358
2264
|
};
|
|
@@ -2371,14 +2277,37 @@ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_Te
|
|
|
2371
2277
|
export { _default as DualseePlugin }
|
|
2372
2278
|
export default _default;
|
|
2373
2279
|
|
|
2280
|
+
export declare const DUALSEE_CONFIG: {
|
|
2281
|
+
appSetting: {
|
|
2282
|
+
baseUrl: string;
|
|
2283
|
+
obsType: string;
|
|
2284
|
+
};
|
|
2285
|
+
dualseeSetting: {
|
|
2286
|
+
enableMatchPoint: boolean;
|
|
2287
|
+
maxMatchDistance: number;
|
|
2288
|
+
};
|
|
2289
|
+
dualseeLock: {
|
|
2290
|
+
locked: boolean;
|
|
2291
|
+
distance: number;
|
|
2292
|
+
showDistance: boolean;
|
|
2293
|
+
};
|
|
2294
|
+
dualseeLockVisible: boolean;
|
|
2295
|
+
referRealseeVisible: boolean;
|
|
2296
|
+
referBimseeVisible: boolean;
|
|
2297
|
+
};
|
|
2298
|
+
|
|
2299
|
+
export declare const DUALSEE_SETTING: {
|
|
2300
|
+
enableMatchPoint: boolean;
|
|
2301
|
+
maxMatchDistance: number;
|
|
2302
|
+
};
|
|
2303
|
+
|
|
2374
2304
|
export declare type DualseeElement = {
|
|
2375
2305
|
getState: () => UpdatableDualseeProps /** 获取当前配置选项 */;
|
|
2376
2306
|
setState: (options: Partial<UpdatableDualseeProps>) => void /** 设置配置选项 */;
|
|
2377
2307
|
getDualseeLock: () => LockElement | undefined /** 获取锁元素引用 */;
|
|
2378
2308
|
getBasicRealsee: () => RealseeElement | undefined /** 获取基础全景元素引用 */;
|
|
2379
2309
|
getReferRealsee: () => RealseeElement | undefined /** 获取对比全景元素引用 */;
|
|
2380
|
-
|
|
2381
|
-
getReferRealseeStatus: () => RealseeProps | undefined /** 获取对比全景状态 */;
|
|
2310
|
+
getReferBimsee: () => BimseeElement | undefined /** 获取对比BIM元素引用 */;
|
|
2382
2311
|
toggleReferRealsee: () => void /** 切换对比全景显示状态 */;
|
|
2383
2312
|
showReferRealsee: () => void /** 显示对比全景 */;
|
|
2384
2313
|
hideReferRealsee: () => void /** 隐藏对比全景 */;
|
|
@@ -2395,11 +2324,20 @@ export declare type DualseeProps = {
|
|
|
2395
2324
|
basicRealsee: RealseeProps;
|
|
2396
2325
|
referRealsee?: RealseeProps;
|
|
2397
2326
|
referBimsee?: BimseeProps;
|
|
2327
|
+
dualseeLockVisible?: boolean;
|
|
2328
|
+
referRealseeVisible?: boolean;
|
|
2329
|
+
referBimseeVisible?: boolean;
|
|
2398
2330
|
};
|
|
2399
2331
|
|
|
2400
2332
|
export declare type DualseeSetting = {
|
|
2401
|
-
enableMatchPoint
|
|
2402
|
-
maxMatchDistance
|
|
2333
|
+
enableMatchPoint?: boolean;
|
|
2334
|
+
maxMatchDistance?: number;
|
|
2335
|
+
};
|
|
2336
|
+
|
|
2337
|
+
export declare const LOCK_CONFIG: {
|
|
2338
|
+
locked: boolean;
|
|
2339
|
+
distance: number;
|
|
2340
|
+
showDistance: boolean;
|
|
2403
2341
|
};
|
|
2404
2342
|
|
|
2405
2343
|
export declare type LockElement = {
|
|
@@ -2413,13 +2351,11 @@ export declare type LockProps = {
|
|
|
2413
2351
|
locked?: boolean;
|
|
2414
2352
|
distance?: number;
|
|
2415
2353
|
showDistance?: boolean;
|
|
2354
|
+
readonly enableMatchPoint?: boolean;
|
|
2355
|
+
readonly maxMatchDistance?: number;
|
|
2416
2356
|
};
|
|
2417
2357
|
|
|
2418
|
-
export declare type UpdatableDualseeProps = Partial<DualseeProps
|
|
2419
|
-
dualseeLockVisible?: boolean;
|
|
2420
|
-
referRealseeVisible?: boolean;
|
|
2421
|
-
referBimseeVisible?: boolean;
|
|
2422
|
-
}>;
|
|
2358
|
+
export declare type UpdatableDualseeProps = Partial<DualseeProps>;
|
|
2423
2359
|
|
|
2424
2360
|
export declare type UpdatableLockProps = Partial<LockProps>;
|
|
2425
2361
|
|