sat-earth 0.8.37 → 0.8.39
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/packages/components/analysis-model/SatModelAnalysis.vue.d.ts +6 -1
- package/dist/packages/components/analysis-model/index.d.ts +6 -1
- package/dist/packages/components/analysis-spatial/SatSpatialAnalysis.vue.d.ts +6 -1
- package/dist/packages/components/analysis-spatial/index.d.ts +6 -1
- package/dist/packages/components/analysis-terrain/SatTerrainAnalysis.vue.d.ts +6 -1
- package/dist/packages/components/analysis-terrain/index.d.ts +6 -1
- package/dist/packages/components/globe/CameraBookmarkPanel.vue.d.ts +6 -1
- package/dist/packages/components/globe/SatGlobe.vue.d.ts +6 -1
- package/dist/packages/components/globe/index.d.ts +6 -1
- package/dist/packages/components/location/SatLocation.vue.d.ts +6 -1
- package/dist/packages/components/location/index.d.ts +6 -1
- package/dist/packages/components/map-part/SatMapPart.vue.d.ts +6 -1
- package/dist/packages/components/map-part/index.d.ts +6 -1
- package/dist/packages/components/measure/SatMeasure.vue.d.ts +6 -1
- package/dist/packages/components/measure/index.d.ts +6 -1
- package/dist/packages/components/panel/SatPanel.vue.d.ts +6 -1
- package/dist/packages/components/panel/index.d.ts +6 -1
- package/dist/packages/components/picture/SatPicture.vue.d.ts +6 -1
- package/dist/packages/components/picture/index.d.ts +6 -1
- package/dist/packages/components/plot/SatPlot.vue.d.ts +6 -1
- package/dist/packages/components/plot/index.d.ts +6 -1
- package/dist/packages/components/roam/SatRoam.vue.d.ts +6 -1
- package/dist/packages/components/roam/index.d.ts +6 -1
- package/dist/packages/components/source/SatSource.vue.d.ts +6 -1
- package/dist/packages/components/source/index.d.ts +6 -1
- package/dist/packages/components/task-view/SatTaskView.vue.d.ts +1 -2
- package/dist/packages/components/task-view/index.d.ts +1 -2
- package/dist/packages/components/types.d.ts +2 -1
- package/dist/packages/components/video-fusion/SatVideoFusion.vue.d.ts +6 -1
- package/dist/packages/components/video-fusion/index.d.ts +6 -1
- package/dist/packages/store/modules/taskView.d.ts +1 -0
- package/dist/sat-earth.mjs +1563 -1616
- package/dist/sat-earth.umd.js +4 -4
- package/dist/style.css +1 -1
- package/package.json +3 -1
|
@@ -54,7 +54,6 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
54
54
|
default: () => void;
|
|
55
55
|
};
|
|
56
56
|
}, {
|
|
57
|
-
mapCanvasEleId: string;
|
|
58
57
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
59
58
|
title: {
|
|
60
59
|
type: StringConstructor;
|
|
@@ -96,11 +95,13 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
96
95
|
default: () => void;
|
|
97
96
|
};
|
|
98
97
|
}>> & {}>>;
|
|
98
|
+
mapCanvasEleId: string;
|
|
99
99
|
record: import("vue").Ref<Record<string, import("../../store/modules/layout").LayoutState>>;
|
|
100
100
|
taskViewStore: import("pinia").Store<"SatTaskView__sat-earth", import("../../store/modules/taskView").TaskViewStateRecord, {}, {
|
|
101
101
|
initRecord(eleId: string): void;
|
|
102
102
|
removeRecord(eleId: string): void;
|
|
103
103
|
}>;
|
|
104
|
+
satPanelRef: import("vue").Ref<HTMLDivElement | undefined>;
|
|
104
105
|
draggable: import("vue").Ref<boolean>;
|
|
105
106
|
dragElement: import("vue").Ref<HTMLElement | null>;
|
|
106
107
|
style: import("vue").ComputedRef<string>;
|
|
@@ -108,6 +109,10 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
108
109
|
windowSizeMine: import("vue").Ref<"Maximize" | "Nomal">;
|
|
109
110
|
changeWindowSize: () => void;
|
|
110
111
|
doMinimize: (e: MouseEvent) => Promise<void>;
|
|
112
|
+
htmlObserver: {
|
|
113
|
+
isSupported: import("vue").Ref<boolean>;
|
|
114
|
+
stop: () => void;
|
|
115
|
+
};
|
|
111
116
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
112
117
|
title: {
|
|
113
118
|
type: StringConstructor;
|
|
@@ -55,7 +55,6 @@ declare const SatPlot: import('../../utils/installer').SFCWithInstall<import("vu
|
|
|
55
55
|
default: () => void;
|
|
56
56
|
};
|
|
57
57
|
}, {
|
|
58
|
-
mapCanvasEleId: string;
|
|
59
58
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
60
59
|
title: {
|
|
61
60
|
type: StringConstructor;
|
|
@@ -97,11 +96,13 @@ declare const SatPlot: import('../../utils/installer').SFCWithInstall<import("vu
|
|
|
97
96
|
default: () => void;
|
|
98
97
|
};
|
|
99
98
|
}>> & {}>>;
|
|
99
|
+
mapCanvasEleId: string;
|
|
100
100
|
record: import("vue").Ref<Record<string, import("../../store/modules/layout").LayoutState>>;
|
|
101
101
|
taskViewStore: import("pinia").Store<"SatTaskView__sat-earth", import("../../store/modules/taskView").TaskViewStateRecord, {}, {
|
|
102
102
|
initRecord(eleId: string): void;
|
|
103
103
|
removeRecord(eleId: string): void;
|
|
104
104
|
}>;
|
|
105
|
+
satPanelRef: import("vue").Ref<HTMLDivElement | undefined>;
|
|
105
106
|
draggable: import("vue").Ref<boolean>;
|
|
106
107
|
dragElement: import("vue").Ref<HTMLElement | null>;
|
|
107
108
|
style: import("vue").ComputedRef<string>;
|
|
@@ -109,6 +110,10 @@ declare const SatPlot: import('../../utils/installer').SFCWithInstall<import("vu
|
|
|
109
110
|
windowSizeMine: import("vue").Ref<"Maximize" | "Nomal">;
|
|
110
111
|
changeWindowSize: () => void;
|
|
111
112
|
doMinimize: (e: MouseEvent) => Promise<void>;
|
|
113
|
+
htmlObserver: {
|
|
114
|
+
isSupported: import("vue").Ref<boolean>;
|
|
115
|
+
stop: () => void;
|
|
116
|
+
};
|
|
112
117
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
113
118
|
title: {
|
|
114
119
|
type: StringConstructor;
|
|
@@ -54,7 +54,6 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
54
54
|
default: () => void;
|
|
55
55
|
};
|
|
56
56
|
}, {
|
|
57
|
-
mapCanvasEleId: string;
|
|
58
57
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
59
58
|
title: {
|
|
60
59
|
type: StringConstructor;
|
|
@@ -96,11 +95,13 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
96
95
|
default: () => void;
|
|
97
96
|
};
|
|
98
97
|
}>> & {}>>;
|
|
98
|
+
mapCanvasEleId: string;
|
|
99
99
|
record: import("vue").Ref<Record<string, import("../../store/modules/layout").LayoutState>>;
|
|
100
100
|
taskViewStore: import("pinia").Store<"SatTaskView__sat-earth", import("../../store/modules/taskView").TaskViewStateRecord, {}, {
|
|
101
101
|
initRecord(eleId: string): void;
|
|
102
102
|
removeRecord(eleId: string): void;
|
|
103
103
|
}>;
|
|
104
|
+
satPanelRef: import("vue").Ref<HTMLDivElement | undefined>;
|
|
104
105
|
draggable: import("vue").Ref<boolean>;
|
|
105
106
|
dragElement: import("vue").Ref<HTMLElement | null>;
|
|
106
107
|
style: import("vue").ComputedRef<string>;
|
|
@@ -108,6 +109,10 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
108
109
|
windowSizeMine: import("vue").Ref<"Maximize" | "Nomal">;
|
|
109
110
|
changeWindowSize: () => void;
|
|
110
111
|
doMinimize: (e: MouseEvent) => Promise<void>;
|
|
112
|
+
htmlObserver: {
|
|
113
|
+
isSupported: import("vue").Ref<boolean>;
|
|
114
|
+
stop: () => void;
|
|
115
|
+
};
|
|
111
116
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
112
117
|
title: {
|
|
113
118
|
type: StringConstructor;
|
|
@@ -55,7 +55,6 @@ declare const SatRoam: import('../../utils/installer').SFCWithInstall<import("vu
|
|
|
55
55
|
default: () => void;
|
|
56
56
|
};
|
|
57
57
|
}, {
|
|
58
|
-
mapCanvasEleId: string;
|
|
59
58
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
60
59
|
title: {
|
|
61
60
|
type: StringConstructor;
|
|
@@ -97,11 +96,13 @@ declare const SatRoam: import('../../utils/installer').SFCWithInstall<import("vu
|
|
|
97
96
|
default: () => void;
|
|
98
97
|
};
|
|
99
98
|
}>> & {}>>;
|
|
99
|
+
mapCanvasEleId: string;
|
|
100
100
|
record: import("vue").Ref<Record<string, import("../../store/modules/layout").LayoutState>>;
|
|
101
101
|
taskViewStore: import("pinia").Store<"SatTaskView__sat-earth", import("../../store/modules/taskView").TaskViewStateRecord, {}, {
|
|
102
102
|
initRecord(eleId: string): void;
|
|
103
103
|
removeRecord(eleId: string): void;
|
|
104
104
|
}>;
|
|
105
|
+
satPanelRef: import("vue").Ref<HTMLDivElement | undefined>;
|
|
105
106
|
draggable: import("vue").Ref<boolean>;
|
|
106
107
|
dragElement: import("vue").Ref<HTMLElement | null>;
|
|
107
108
|
style: import("vue").ComputedRef<string>;
|
|
@@ -109,6 +110,10 @@ declare const SatRoam: import('../../utils/installer').SFCWithInstall<import("vu
|
|
|
109
110
|
windowSizeMine: import("vue").Ref<"Maximize" | "Nomal">;
|
|
110
111
|
changeWindowSize: () => void;
|
|
111
112
|
doMinimize: (e: MouseEvent) => Promise<void>;
|
|
113
|
+
htmlObserver: {
|
|
114
|
+
isSupported: import("vue").Ref<boolean>;
|
|
115
|
+
stop: () => void;
|
|
116
|
+
};
|
|
112
117
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
113
118
|
title: {
|
|
114
119
|
type: StringConstructor;
|
|
@@ -54,7 +54,6 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
54
54
|
default: () => void;
|
|
55
55
|
};
|
|
56
56
|
}, {
|
|
57
|
-
mapCanvasEleId: string;
|
|
58
57
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
59
58
|
title: {
|
|
60
59
|
type: StringConstructor;
|
|
@@ -96,11 +95,13 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
96
95
|
default: () => void;
|
|
97
96
|
};
|
|
98
97
|
}>> & {}>>;
|
|
98
|
+
mapCanvasEleId: string;
|
|
99
99
|
record: import("vue").Ref<Record<string, import("../../store/modules/layout").LayoutState>>;
|
|
100
100
|
taskViewStore: import("pinia").Store<"SatTaskView__sat-earth", import("../../store/modules/taskView").TaskViewStateRecord, {}, {
|
|
101
101
|
initRecord(eleId: string): void;
|
|
102
102
|
removeRecord(eleId: string): void;
|
|
103
103
|
}>;
|
|
104
|
+
satPanelRef: import("vue").Ref<HTMLDivElement | undefined>;
|
|
104
105
|
draggable: import("vue").Ref<boolean>;
|
|
105
106
|
dragElement: import("vue").Ref<HTMLElement | null>;
|
|
106
107
|
style: import("vue").ComputedRef<string>;
|
|
@@ -108,6 +109,10 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
108
109
|
windowSizeMine: import("vue").Ref<"Maximize" | "Nomal">;
|
|
109
110
|
changeWindowSize: () => void;
|
|
110
111
|
doMinimize: (e: MouseEvent) => Promise<void>;
|
|
112
|
+
htmlObserver: {
|
|
113
|
+
isSupported: import("vue").Ref<boolean>;
|
|
114
|
+
stop: () => void;
|
|
115
|
+
};
|
|
111
116
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
112
117
|
title: {
|
|
113
118
|
type: StringConstructor;
|
|
@@ -55,7 +55,6 @@ declare const SatSource: import('../../utils/installer').SFCWithInstall<import("
|
|
|
55
55
|
default: () => void;
|
|
56
56
|
};
|
|
57
57
|
}, {
|
|
58
|
-
mapCanvasEleId: string;
|
|
59
58
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
60
59
|
title: {
|
|
61
60
|
type: StringConstructor;
|
|
@@ -97,11 +96,13 @@ declare const SatSource: import('../../utils/installer').SFCWithInstall<import("
|
|
|
97
96
|
default: () => void;
|
|
98
97
|
};
|
|
99
98
|
}>> & {}>>;
|
|
99
|
+
mapCanvasEleId: string;
|
|
100
100
|
record: import("vue").Ref<Record<string, import("../../store/modules/layout").LayoutState>>;
|
|
101
101
|
taskViewStore: import("pinia").Store<"SatTaskView__sat-earth", import("../../store/modules/taskView").TaskViewStateRecord, {}, {
|
|
102
102
|
initRecord(eleId: string): void;
|
|
103
103
|
removeRecord(eleId: string): void;
|
|
104
104
|
}>;
|
|
105
|
+
satPanelRef: import("vue").Ref<HTMLDivElement | undefined>;
|
|
105
106
|
draggable: import("vue").Ref<boolean>;
|
|
106
107
|
dragElement: import("vue").Ref<HTMLElement | null>;
|
|
107
108
|
style: import("vue").ComputedRef<string>;
|
|
@@ -109,6 +110,10 @@ declare const SatSource: import('../../utils/installer').SFCWithInstall<import("
|
|
|
109
110
|
windowSizeMine: import("vue").Ref<"Maximize" | "Nomal">;
|
|
110
111
|
changeWindowSize: () => void;
|
|
111
112
|
doMinimize: (e: MouseEvent) => Promise<void>;
|
|
113
|
+
htmlObserver: {
|
|
114
|
+
isSupported: import("vue").Ref<boolean>;
|
|
115
|
+
stop: () => void;
|
|
116
|
+
};
|
|
112
117
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
113
118
|
title: {
|
|
114
119
|
type: StringConstructor;
|
|
@@ -14,7 +14,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
14
14
|
}>> & {}>>;
|
|
15
15
|
mapCanvasEleId: string;
|
|
16
16
|
isShow: import("vue").Ref<boolean>;
|
|
17
|
-
|
|
17
|
+
containerSuffix: string;
|
|
18
18
|
toggleShow: (flag: boolean) => Promise<void>;
|
|
19
19
|
mouseMoveIn: import("vue").Ref<SatTaskViewItem | undefined>;
|
|
20
20
|
taskViewStore: import("pinia").Store<"SatTaskView__sat-earth", import('../../store/modules/taskView').TaskViewStateRecord, {}, {
|
|
@@ -26,7 +26,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
26
26
|
activeList: import("vue").ComputedRef<SatTaskViewItem[]>;
|
|
27
27
|
close: (item: SatTaskViewItem) => void;
|
|
28
28
|
active: (item: SatTaskViewItem) => void;
|
|
29
|
-
IconPicture: import("vue").DefineComponent<{}, {}, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
30
29
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
31
30
|
taskViewList: {
|
|
32
31
|
type: PropType<SatTaskViewItem[]>;
|
|
@@ -13,7 +13,7 @@ declare const SatTaskView: import('../../utils/installer').SFCWithInstall<import
|
|
|
13
13
|
}>> & {}>>;
|
|
14
14
|
mapCanvasEleId: string;
|
|
15
15
|
isShow: import("vue").Ref<boolean>;
|
|
16
|
-
|
|
16
|
+
containerSuffix: string;
|
|
17
17
|
toggleShow: (flag: boolean) => Promise<void>;
|
|
18
18
|
mouseMoveIn: import("vue").Ref<import("../types").SatTaskViewItem | undefined>;
|
|
19
19
|
taskViewStore: import("pinia").Store<"SatTaskView__sat-earth", import("../../store/modules/taskView").TaskViewStateRecord, {}, {
|
|
@@ -25,7 +25,6 @@ declare const SatTaskView: import('../../utils/installer').SFCWithInstall<import
|
|
|
25
25
|
activeList: import("vue").ComputedRef<import("../types").SatTaskViewItem[]>;
|
|
26
26
|
close: (item: import("../types").SatTaskViewItem) => void;
|
|
27
27
|
active: (item: import("../types").SatTaskViewItem) => void;
|
|
28
|
-
IconPicture: import("vue").DefineComponent<{}, {}, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
29
28
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
30
29
|
taskViewList: {
|
|
31
30
|
type: import("vue").PropType<import("../types").SatTaskViewItem[]>;
|
|
@@ -8,7 +8,7 @@ export interface SatTaskViewItem {
|
|
|
8
8
|
name: string;
|
|
9
9
|
label: string;
|
|
10
10
|
eleId?: string;
|
|
11
|
-
|
|
11
|
+
isShowTaskViewClose?: boolean;
|
|
12
12
|
isEnabled?: boolean;
|
|
13
13
|
base64?: string;
|
|
14
14
|
maxWidth?: string;
|
|
@@ -23,6 +23,7 @@ export declare type SatMenuItem = Partial<StateItem> & {
|
|
|
23
23
|
class?: string;
|
|
24
24
|
image?: string;
|
|
25
25
|
};
|
|
26
|
+
isShowMenuClose?: boolean;
|
|
26
27
|
isMenu?: boolean;
|
|
27
28
|
children?: Array<SatMenuItem>;
|
|
28
29
|
};
|
|
@@ -54,7 +54,6 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
54
54
|
default: () => void;
|
|
55
55
|
};
|
|
56
56
|
}, {
|
|
57
|
-
mapCanvasEleId: string;
|
|
58
57
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
59
58
|
title: {
|
|
60
59
|
type: StringConstructor;
|
|
@@ -96,11 +95,13 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
96
95
|
default: () => void;
|
|
97
96
|
};
|
|
98
97
|
}>> & {}>>;
|
|
98
|
+
mapCanvasEleId: string;
|
|
99
99
|
record: import("vue").Ref<Record<string, import("../../store/modules/layout").LayoutState>>;
|
|
100
100
|
taskViewStore: import("pinia").Store<"SatTaskView__sat-earth", import("../../store/modules/taskView").TaskViewStateRecord, {}, {
|
|
101
101
|
initRecord(eleId: string): void;
|
|
102
102
|
removeRecord(eleId: string): void;
|
|
103
103
|
}>;
|
|
104
|
+
satPanelRef: import("vue").Ref<HTMLDivElement | undefined>;
|
|
104
105
|
draggable: import("vue").Ref<boolean>;
|
|
105
106
|
dragElement: import("vue").Ref<HTMLElement | null>;
|
|
106
107
|
style: import("vue").ComputedRef<string>;
|
|
@@ -108,6 +109,10 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
108
109
|
windowSizeMine: import("vue").Ref<"Maximize" | "Nomal">;
|
|
109
110
|
changeWindowSize: () => void;
|
|
110
111
|
doMinimize: (e: MouseEvent) => Promise<void>;
|
|
112
|
+
htmlObserver: {
|
|
113
|
+
isSupported: import("vue").Ref<boolean>;
|
|
114
|
+
stop: () => void;
|
|
115
|
+
};
|
|
111
116
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
112
117
|
title: {
|
|
113
118
|
type: StringConstructor;
|
|
@@ -55,7 +55,6 @@ declare const SatVideoFusion: import('../../utils/installer').SFCWithInstall<imp
|
|
|
55
55
|
default: () => void;
|
|
56
56
|
};
|
|
57
57
|
}, {
|
|
58
|
-
mapCanvasEleId: string;
|
|
59
58
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
60
59
|
title: {
|
|
61
60
|
type: StringConstructor;
|
|
@@ -97,11 +96,13 @@ declare const SatVideoFusion: import('../../utils/installer').SFCWithInstall<imp
|
|
|
97
96
|
default: () => void;
|
|
98
97
|
};
|
|
99
98
|
}>> & {}>>;
|
|
99
|
+
mapCanvasEleId: string;
|
|
100
100
|
record: import("vue").Ref<Record<string, import("../../store/modules/layout").LayoutState>>;
|
|
101
101
|
taskViewStore: import("pinia").Store<"SatTaskView__sat-earth", import("../../store/modules/taskView").TaskViewStateRecord, {}, {
|
|
102
102
|
initRecord(eleId: string): void;
|
|
103
103
|
removeRecord(eleId: string): void;
|
|
104
104
|
}>;
|
|
105
|
+
satPanelRef: import("vue").Ref<HTMLDivElement | undefined>;
|
|
105
106
|
draggable: import("vue").Ref<boolean>;
|
|
106
107
|
dragElement: import("vue").Ref<HTMLElement | null>;
|
|
107
108
|
style: import("vue").ComputedRef<string>;
|
|
@@ -109,6 +110,10 @@ declare const SatVideoFusion: import('../../utils/installer').SFCWithInstall<imp
|
|
|
109
110
|
windowSizeMine: import("vue").Ref<"Maximize" | "Nomal">;
|
|
110
111
|
changeWindowSize: () => void;
|
|
111
112
|
doMinimize: (e: MouseEvent) => Promise<void>;
|
|
113
|
+
htmlObserver: {
|
|
114
|
+
isSupported: import("vue").Ref<boolean>;
|
|
115
|
+
stop: () => void;
|
|
116
|
+
};
|
|
112
117
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
113
118
|
title: {
|
|
114
119
|
type: StringConstructor;
|