sat-earth 0.9.9 → 0.9.11
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/_private/TheImageEditor/index.vue.d.ts +1 -1
- package/dist/packages/components/analysis-model/SatModelAnalysis.vue.d.ts +2 -2
- package/dist/packages/components/analysis-model/index.d.ts +2 -2
- package/dist/packages/components/analysis-spatial/SatSpatialAnalysis.vue.d.ts +3 -3
- package/dist/packages/components/analysis-spatial/SatSpatialAnalysisMain.vue.d.ts +1 -1
- package/dist/packages/components/analysis-spatial/index.d.ts +3 -3
- package/dist/packages/components/analysis-spatial/modules/AnalysisSection.vue.d.ts +1 -1
- package/dist/packages/components/analysis-terrain/SatTerrainAnalysis.vue.d.ts +2 -2
- package/dist/packages/components/analysis-terrain/index.d.ts +2 -2
- package/dist/packages/components/globe/CameraBookmarkPanel.vue.d.ts +2 -2
- package/dist/packages/components/globe/MapSplitPanel.vue.d.ts +1 -1
- package/dist/packages/components/globe/SatGlobe.vue.d.ts +6 -3
- package/dist/packages/components/globe/index.d.ts +6 -3
- package/dist/packages/components/location/SatCoordinate.vue.d.ts +1 -1
- package/dist/packages/components/location/SatLocation.vue.d.ts +5 -5
- package/dist/packages/components/location/SatLocationMain.vue.d.ts +3 -3
- package/dist/packages/components/location/SatPathPlan.vue.d.ts +1 -1
- package/dist/packages/components/location/SatPoiQuery.vue.d.ts +1 -1
- package/dist/packages/components/location/index.d.ts +5 -5
- package/dist/packages/components/map-part/SatMapPart.vue.d.ts +3 -3
- package/dist/packages/components/map-part/SatMapPartMain.vue.d.ts +1 -1
- package/dist/packages/components/map-part/index.d.ts +3 -3
- package/dist/packages/components/measure/SatMeasure.vue.d.ts +3 -3
- package/dist/packages/components/measure/SatMeasureMain.vue.d.ts +1 -1
- package/dist/packages/components/measure/index.d.ts +3 -3
- package/dist/packages/components/menu/SatMenu.vue.d.ts +2 -2
- package/dist/packages/components/menu/SatMenuMain.vue.d.ts +2 -2
- package/dist/packages/components/menu/tree/SatMenuTree.vue.d.ts +1 -1
- package/dist/packages/components/menu/tree/index.d.ts +1 -1
- package/dist/packages/components/panel/SatPanel.vue.d.ts +1 -1
- package/dist/packages/components/panel/index.d.ts +1 -1
- package/dist/packages/components/picture/SatPicture.vue.d.ts +3 -3
- package/dist/packages/components/picture/index.d.ts +3 -3
- package/dist/packages/components/plot/PlotEdit.vue.d.ts +4 -4
- package/dist/packages/components/plot/PlotEditAttr.vue.d.ts +1 -1
- package/dist/packages/components/plot/PlotEditCoord.vue.d.ts +1 -1
- package/dist/packages/components/plot/PlotEditStyle.vue.d.ts +1 -1
- package/dist/packages/components/plot/PlotGroup.vue.d.ts +1 -1
- package/dist/packages/components/plot/PlotSourceList.vue.d.ts +1 -1
- package/dist/packages/components/plot/SatPlot.vue.d.ts +9 -9
- package/dist/packages/components/plot/SatPlotMain.vue.d.ts +7 -7
- package/dist/packages/components/plot/index.d.ts +9 -9
- package/dist/packages/components/roam/SatRoam.vue.d.ts +2 -2
- package/dist/packages/components/roam/index.d.ts +2 -2
- package/dist/packages/components/source/LayerStyleSlider.vue.d.ts +1 -1
- package/dist/packages/components/source/SatSource.vue.d.ts +5 -5
- package/dist/packages/components/source/SatSourceMain.vue.d.ts +3 -3
- package/dist/packages/components/source/TerrainExaggerationSlider.vue.d.ts +1 -1
- package/dist/packages/components/source/index.d.ts +5 -5
- package/dist/packages/components/task-view/SatTaskView.vue.d.ts +1 -1
- package/dist/packages/components/task-view/index.d.ts +1 -1
- package/dist/packages/components/video-fusion/SatVideoFusion.vue.d.ts +2 -2
- package/dist/packages/components/video-fusion/index.d.ts +2 -2
- package/dist/packages/config/injectKeys.d.ts +1 -1
- package/dist/packages/utils/map/analysis-spatial/index.d.ts +2 -2
- package/dist/packages/utils/map/analysis-spatial/section.d.ts +4 -2
- package/dist/packages/utils/map/index.d.ts +4 -1
- package/dist/packages/utils/map/layer/index.d.ts +3 -2
- package/dist/packages/utils/map/plot/index.d.ts +3 -2
- package/dist/sat-earth.mjs +2415 -2287
- package/dist/sat-earth.umd.js +3 -3
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -4,7 +4,7 @@ import type { UploadFile } from 'element-plus';
|
|
|
4
4
|
import { SatMap } from '../../../utils';
|
|
5
5
|
declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
6
6
|
mapInstance: import("vue").ShallowRef<SatMap | null> | undefined;
|
|
7
|
-
|
|
7
|
+
satGlobeEleId: string;
|
|
8
8
|
instance: import("vue").ShallowRef<tuiImageEditor | undefined>;
|
|
9
9
|
fileList: import("vue").Ref<{
|
|
10
10
|
name: string;
|
|
@@ -5,7 +5,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
5
5
|
};
|
|
6
6
|
userCustomInitHooks: () => void;
|
|
7
7
|
userCustomDestroyHooks: () => void;
|
|
8
|
-
|
|
8
|
+
satGlobeEleId: string;
|
|
9
9
|
name: string;
|
|
10
10
|
label: string;
|
|
11
11
|
isInSide: boolean;
|
|
@@ -95,7 +95,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
95
95
|
default: () => void;
|
|
96
96
|
};
|
|
97
97
|
}>> & {}>>;
|
|
98
|
-
|
|
98
|
+
satGlobeEleId: 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;
|
|
@@ -6,7 +6,7 @@ declare const SatModelAnalysis: import('../../utils/installer').SFCWithInstall<i
|
|
|
6
6
|
};
|
|
7
7
|
userCustomInitHooks: () => void;
|
|
8
8
|
userCustomDestroyHooks: () => void;
|
|
9
|
-
|
|
9
|
+
satGlobeEleId: string;
|
|
10
10
|
name: string;
|
|
11
11
|
label: string;
|
|
12
12
|
isInSide: boolean;
|
|
@@ -96,7 +96,7 @@ declare const SatModelAnalysis: import('../../utils/installer').SFCWithInstall<i
|
|
|
96
96
|
default: () => void;
|
|
97
97
|
};
|
|
98
98
|
}>> & {}>>;
|
|
99
|
-
|
|
99
|
+
satGlobeEleId: 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;
|
|
@@ -5,7 +5,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
5
5
|
};
|
|
6
6
|
userCustomInitHooks: () => void;
|
|
7
7
|
userCustomDestroyHooks: () => void;
|
|
8
|
-
|
|
8
|
+
satGlobeEleId: string;
|
|
9
9
|
name: string;
|
|
10
10
|
label: string;
|
|
11
11
|
isInSide: boolean;
|
|
@@ -95,7 +95,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
95
95
|
default: () => void;
|
|
96
96
|
};
|
|
97
97
|
}>> & {}>>;
|
|
98
|
-
|
|
98
|
+
satGlobeEleId: 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;
|
|
@@ -168,7 +168,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
168
168
|
currentAnalysis: import("vue").Ref<"剖面分析" | "方量分析" | "通视分析" | "可视域分析" | "缓冲分析" | "淹没分析">;
|
|
169
169
|
AnalysisSection: import("vue").DefineComponent<{}, {
|
|
170
170
|
mapInstance: import("vue").ShallowRef<import("../../utils").SatMap | null> | undefined;
|
|
171
|
-
|
|
171
|
+
satGlobeEleId: string;
|
|
172
172
|
record: import("vue").Ref<Record<string, import("../../store/modules/layout").LayoutState>>;
|
|
173
173
|
startDraw: () => void;
|
|
174
174
|
stopDraw: () => void;
|
|
@@ -3,7 +3,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
3
3
|
currentAnalysis: import("vue").Ref<"剖面分析" | "方量分析" | "通视分析" | "可视域分析" | "缓冲分析" | "淹没分析">;
|
|
4
4
|
AnalysisSection: import("vue").DefineComponent<{}, {
|
|
5
5
|
mapInstance: import("vue").ShallowRef<import("../../utils").SatMap | null> | undefined;
|
|
6
|
-
|
|
6
|
+
satGlobeEleId: string;
|
|
7
7
|
record: import("vue").Ref<Record<string, import("../../store/modules/layout").LayoutState>>;
|
|
8
8
|
startDraw: () => void;
|
|
9
9
|
stopDraw: () => void;
|
|
@@ -6,7 +6,7 @@ declare const SatSpatialAnalysis: import('../../utils/installer').SFCWithInstall
|
|
|
6
6
|
};
|
|
7
7
|
userCustomInitHooks: () => void;
|
|
8
8
|
userCustomDestroyHooks: () => void;
|
|
9
|
-
|
|
9
|
+
satGlobeEleId: string;
|
|
10
10
|
name: string;
|
|
11
11
|
label: string;
|
|
12
12
|
isInSide: boolean;
|
|
@@ -96,7 +96,7 @@ declare const SatSpatialAnalysis: import('../../utils/installer').SFCWithInstall
|
|
|
96
96
|
default: () => void;
|
|
97
97
|
};
|
|
98
98
|
}>> & {}>>;
|
|
99
|
-
|
|
99
|
+
satGlobeEleId: 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;
|
|
@@ -169,7 +169,7 @@ declare const SatSpatialAnalysis: import('../../utils/installer').SFCWithInstall
|
|
|
169
169
|
currentAnalysis: import("vue").Ref<"剖面分析" | "方量分析" | "通视分析" | "可视域分析" | "缓冲分析" | "淹没分析">;
|
|
170
170
|
AnalysisSection: import("vue").DefineComponent<{}, {
|
|
171
171
|
mapInstance: import("vue").ShallowRef<import("../../utils").SatMap | null> | undefined;
|
|
172
|
-
|
|
172
|
+
satGlobeEleId: string;
|
|
173
173
|
record: import("vue").Ref<Record<string, import("../../store/modules/layout").LayoutState>>;
|
|
174
174
|
startDraw: () => void;
|
|
175
175
|
stopDraw: () => void;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
2
2
|
mapInstance: import("vue").ShallowRef<import("../../../utils").SatMap | null> | undefined;
|
|
3
|
-
|
|
3
|
+
satGlobeEleId: string;
|
|
4
4
|
record: import("vue").Ref<Record<string, import('../../../store/modules/layout').LayoutState>>;
|
|
5
5
|
startDraw: () => void;
|
|
6
6
|
stopDraw: () => void;
|
|
@@ -5,7 +5,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
5
5
|
};
|
|
6
6
|
userCustomInitHooks: () => void;
|
|
7
7
|
userCustomDestroyHooks: () => void;
|
|
8
|
-
|
|
8
|
+
satGlobeEleId: string;
|
|
9
9
|
name: string;
|
|
10
10
|
label: string;
|
|
11
11
|
isInSide: boolean;
|
|
@@ -95,7 +95,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
95
95
|
default: () => void;
|
|
96
96
|
};
|
|
97
97
|
}>> & {}>>;
|
|
98
|
-
|
|
98
|
+
satGlobeEleId: 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;
|
|
@@ -6,7 +6,7 @@ declare const SatTerrainAnalysis: import('../../utils/installer').SFCWithInstall
|
|
|
6
6
|
};
|
|
7
7
|
userCustomInitHooks: () => void;
|
|
8
8
|
userCustomDestroyHooks: () => void;
|
|
9
|
-
|
|
9
|
+
satGlobeEleId: string;
|
|
10
10
|
name: string;
|
|
11
11
|
label: string;
|
|
12
12
|
isInSide: boolean;
|
|
@@ -96,7 +96,7 @@ declare const SatTerrainAnalysis: import('../../utils/installer').SFCWithInstall
|
|
|
96
96
|
default: () => void;
|
|
97
97
|
};
|
|
98
98
|
}>> & {}>>;
|
|
99
|
-
|
|
99
|
+
satGlobeEleId: 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;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type Bookmark } from './helpers';
|
|
2
2
|
declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
3
3
|
mapInstance: import("vue").ShallowRef<import("../../utils").SatMap | null> | undefined;
|
|
4
|
-
|
|
4
|
+
satGlobeEleId: string;
|
|
5
5
|
layoutStore: import("pinia").Store<"SatLayout__sat-earth", import('../../store/modules/layout').LayoutStateRecord, {}, {
|
|
6
6
|
initRecord(eleId: string): void;
|
|
7
7
|
removeRecord(eleId: string): void;
|
|
@@ -112,7 +112,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
112
112
|
default: () => void;
|
|
113
113
|
};
|
|
114
114
|
}>> & {}>>;
|
|
115
|
-
|
|
115
|
+
satGlobeEleId: string;
|
|
116
116
|
record: import("vue").Ref<Record<string, import('../../store/modules/layout').LayoutState>>;
|
|
117
117
|
taskViewStore: import("pinia").Store<"SatTaskView__sat-earth", import("../../store/modules/taskView").TaskViewStateRecord, {}, {
|
|
118
118
|
initRecord(eleId: string): void;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
2
2
|
mapInstance: import("vue").ShallowRef<import("../../utils").SatMap | null> | undefined;
|
|
3
|
-
|
|
3
|
+
satGlobeEleId: string;
|
|
4
4
|
layerStore: import("pinia").Store<"SatLayerDev__sat-earth", import('../../store/modules/layer').LayerStateRecord, {}, {
|
|
5
5
|
initRecord(eleId: string): void;
|
|
6
6
|
removeRecord(eleId: string): void;
|
|
@@ -65,6 +65,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
65
65
|
default: () => SatMapOptions;
|
|
66
66
|
};
|
|
67
67
|
}>> & {}>>;
|
|
68
|
+
satGlobeEleId: string;
|
|
69
|
+
satMapOptions: SatMapOptions;
|
|
70
|
+
mapContainerEleId: string;
|
|
68
71
|
merged: SatMapOptions;
|
|
69
72
|
showDarkRadio: import("vue").Ref<boolean>;
|
|
70
73
|
isDark: import("vue").Ref<boolean>;
|
|
@@ -81,7 +84,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
81
84
|
};
|
|
82
85
|
MapSplitPanel: import("vue").DefineComponent<{}, {
|
|
83
86
|
mapInstance: import("vue").ShallowRef<SatMap | null> | undefined;
|
|
84
|
-
|
|
87
|
+
satGlobeEleId: string;
|
|
85
88
|
layerStore: import("pinia").Store<"SatLayerDev__sat-earth", import('../../store/modules/layer').LayerStateRecord, {}, {
|
|
86
89
|
initRecord(eleId: string): void;
|
|
87
90
|
removeRecord(eleId: string): void;
|
|
@@ -103,7 +106,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
103
106
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
104
107
|
CameraBookmarkPanel: import("vue").DefineComponent<{}, {
|
|
105
108
|
mapInstance: import("vue").ShallowRef<SatMap | null> | undefined;
|
|
106
|
-
|
|
109
|
+
satGlobeEleId: string;
|
|
107
110
|
layoutStore: import("pinia").Store<"SatLayout__sat-earth", import('../../store/modules/layout').LayoutStateRecord, {}, {
|
|
108
111
|
initRecord(eleId: string): void;
|
|
109
112
|
removeRecord(eleId: string): void;
|
|
@@ -214,7 +217,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
214
217
|
default: () => void;
|
|
215
218
|
};
|
|
216
219
|
}>> & {}>>;
|
|
217
|
-
|
|
220
|
+
satGlobeEleId: string;
|
|
218
221
|
record: import("vue").Ref<Record<string, import('../../store/modules/layout').LayoutState>>;
|
|
219
222
|
taskViewStore: import("pinia").Store<"SatTaskView__sat-earth", import("../../store/modules/taskView").TaskViewStateRecord, {}, {
|
|
220
223
|
initRecord(eleId: string): void;
|
|
@@ -64,6 +64,9 @@ declare const SatGlobe: import('../../utils/installer').SFCWithInstall<import("v
|
|
|
64
64
|
default: () => import("../types").SatMapOptions;
|
|
65
65
|
};
|
|
66
66
|
}>> & {}>>;
|
|
67
|
+
satGlobeEleId: string;
|
|
68
|
+
satMapOptions: import("../types").SatMapOptions;
|
|
69
|
+
mapContainerEleId: string;
|
|
67
70
|
merged: import("../types").SatMapOptions;
|
|
68
71
|
showDarkRadio: import("vue").Ref<boolean>;
|
|
69
72
|
isDark: import("vue").Ref<boolean>;
|
|
@@ -80,7 +83,7 @@ declare const SatGlobe: import('../../utils/installer').SFCWithInstall<import("v
|
|
|
80
83
|
};
|
|
81
84
|
MapSplitPanel: import("vue").DefineComponent<{}, {
|
|
82
85
|
mapInstance: import("vue").ShallowRef<SatMap | null> | undefined;
|
|
83
|
-
|
|
86
|
+
satGlobeEleId: string;
|
|
84
87
|
layerStore: import("pinia").Store<"SatLayerDev__sat-earth", import("../../store/modules/layer").LayerStateRecord, {}, {
|
|
85
88
|
initRecord(eleId: string): void;
|
|
86
89
|
removeRecord(eleId: string): void;
|
|
@@ -102,7 +105,7 @@ declare const SatGlobe: import('../../utils/installer').SFCWithInstall<import("v
|
|
|
102
105
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
103
106
|
CameraBookmarkPanel: import("vue").DefineComponent<{}, {
|
|
104
107
|
mapInstance: import("vue").ShallowRef<SatMap | null> | undefined;
|
|
105
|
-
|
|
108
|
+
satGlobeEleId: string;
|
|
106
109
|
layoutStore: import("pinia").Store<"SatLayout__sat-earth", import("../../store/modules/layout").LayoutStateRecord, {}, {
|
|
107
110
|
initRecord(eleId: string): void;
|
|
108
111
|
removeRecord(eleId: string): void;
|
|
@@ -213,7 +216,7 @@ declare const SatGlobe: import('../../utils/installer').SFCWithInstall<import("v
|
|
|
213
216
|
default: () => void;
|
|
214
217
|
};
|
|
215
218
|
}>> & {}>>;
|
|
216
|
-
|
|
219
|
+
satGlobeEleId: string;
|
|
217
220
|
record: import("vue").Ref<Record<string, import("../../store/modules/layout").LayoutState>>;
|
|
218
221
|
taskViewStore: import("pinia").Store<"SatTaskView__sat-earth", import("../../store/modules/taskView").TaskViewStateRecord, {}, {
|
|
219
222
|
initRecord(eleId: string): void;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type SatPointEntity } from '../../utils/types';
|
|
2
2
|
declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
3
3
|
mapInstance: import("vue").ShallowRef<import("../../utils").SatMap | null> | undefined;
|
|
4
|
-
|
|
4
|
+
satGlobeEleId: string;
|
|
5
5
|
coordinateHelper: {
|
|
6
6
|
markerCoordinates(coord: {
|
|
7
7
|
lng: number;
|
|
@@ -5,7 +5,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
5
5
|
};
|
|
6
6
|
userCustomInitHooks: () => void;
|
|
7
7
|
userCustomDestroyHooks: () => void;
|
|
8
|
-
|
|
8
|
+
satGlobeEleId: string;
|
|
9
9
|
name: string;
|
|
10
10
|
label: string;
|
|
11
11
|
isInSide: boolean;
|
|
@@ -95,7 +95,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
95
95
|
default: () => void;
|
|
96
96
|
};
|
|
97
97
|
}>> & {}>>;
|
|
98
|
-
|
|
98
|
+
satGlobeEleId: 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;
|
|
@@ -167,7 +167,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
167
167
|
activeName: import("vue").Ref<string>;
|
|
168
168
|
SatCoordinate: import("vue").DefineComponent<{}, {
|
|
169
169
|
mapInstance: import("vue").ShallowRef<import("../../utils").SatMap | null> | undefined;
|
|
170
|
-
|
|
170
|
+
satGlobeEleId: string;
|
|
171
171
|
coordinateHelper: {
|
|
172
172
|
markerCoordinates(coord: {
|
|
173
173
|
lng: number;
|
|
@@ -557,7 +557,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
557
557
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
558
558
|
SatPathPlan: import("vue").DefineComponent<{}, {
|
|
559
559
|
mapInstance: import("vue").ShallowRef<import("../../utils").SatMap | null> | undefined;
|
|
560
|
-
|
|
560
|
+
satGlobeEleId: string;
|
|
561
561
|
pathPlanHelper: {
|
|
562
562
|
routeLayer: any;
|
|
563
563
|
gaodeRoute: any;
|
|
@@ -603,7 +603,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
603
603
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
604
604
|
SatPoiQuery: import("vue").DefineComponent<{}, {
|
|
605
605
|
mapInstance: import("vue").ShallowRef<import("../../utils").SatMap | null> | undefined;
|
|
606
|
-
|
|
606
|
+
satGlobeEleId: string;
|
|
607
607
|
poiQueryHelper: {
|
|
608
608
|
graphicLayer: any;
|
|
609
609
|
init(): void;
|
|
@@ -2,7 +2,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
2
2
|
activeName: import("vue").Ref<string>;
|
|
3
3
|
SatCoordinate: import("vue").DefineComponent<{}, {
|
|
4
4
|
mapInstance: import("vue").ShallowRef<import("../../utils").SatMap | null> | undefined;
|
|
5
|
-
|
|
5
|
+
satGlobeEleId: string;
|
|
6
6
|
coordinateHelper: {
|
|
7
7
|
markerCoordinates(coord: {
|
|
8
8
|
lng: number;
|
|
@@ -392,7 +392,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
392
392
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
393
393
|
SatPathPlan: import("vue").DefineComponent<{}, {
|
|
394
394
|
mapInstance: import("vue").ShallowRef<import("../../utils").SatMap | null> | undefined;
|
|
395
|
-
|
|
395
|
+
satGlobeEleId: string;
|
|
396
396
|
pathPlanHelper: {
|
|
397
397
|
routeLayer: any;
|
|
398
398
|
gaodeRoute: any;
|
|
@@ -438,7 +438,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
438
438
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
439
439
|
SatPoiQuery: import("vue").DefineComponent<{}, {
|
|
440
440
|
mapInstance: import("vue").ShallowRef<import("../../utils").SatMap | null> | undefined;
|
|
441
|
-
|
|
441
|
+
satGlobeEleId: string;
|
|
442
442
|
poiQueryHelper: {
|
|
443
443
|
graphicLayer: any;
|
|
444
444
|
init(): void;
|
|
@@ -6,7 +6,7 @@ declare const SatLocation: import('../../utils/installer').SFCWithInstall<import
|
|
|
6
6
|
};
|
|
7
7
|
userCustomInitHooks: () => void;
|
|
8
8
|
userCustomDestroyHooks: () => void;
|
|
9
|
-
|
|
9
|
+
satGlobeEleId: string;
|
|
10
10
|
name: string;
|
|
11
11
|
label: string;
|
|
12
12
|
isInSide: boolean;
|
|
@@ -96,7 +96,7 @@ declare const SatLocation: import('../../utils/installer').SFCWithInstall<import
|
|
|
96
96
|
default: () => void;
|
|
97
97
|
};
|
|
98
98
|
}>> & {}>>;
|
|
99
|
-
|
|
99
|
+
satGlobeEleId: 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;
|
|
@@ -168,7 +168,7 @@ declare const SatLocation: import('../../utils/installer').SFCWithInstall<import
|
|
|
168
168
|
activeName: import("vue").Ref<string>;
|
|
169
169
|
SatCoordinate: import("vue").DefineComponent<{}, {
|
|
170
170
|
mapInstance: import("vue").ShallowRef<import("../../utils").SatMap | null> | undefined;
|
|
171
|
-
|
|
171
|
+
satGlobeEleId: string;
|
|
172
172
|
coordinateHelper: {
|
|
173
173
|
markerCoordinates(coord: {
|
|
174
174
|
lng: number;
|
|
@@ -558,7 +558,7 @@ declare const SatLocation: import('../../utils/installer').SFCWithInstall<import
|
|
|
558
558
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
559
559
|
SatPathPlan: import("vue").DefineComponent<{}, {
|
|
560
560
|
mapInstance: import("vue").ShallowRef<import("../../utils").SatMap | null> | undefined;
|
|
561
|
-
|
|
561
|
+
satGlobeEleId: string;
|
|
562
562
|
pathPlanHelper: {
|
|
563
563
|
routeLayer: any;
|
|
564
564
|
gaodeRoute: any;
|
|
@@ -604,7 +604,7 @@ declare const SatLocation: import('../../utils/installer').SFCWithInstall<import
|
|
|
604
604
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
605
605
|
SatPoiQuery: import("vue").DefineComponent<{}, {
|
|
606
606
|
mapInstance: import("vue").ShallowRef<import("../../utils").SatMap | null> | undefined;
|
|
607
|
-
|
|
607
|
+
satGlobeEleId: string;
|
|
608
608
|
poiQueryHelper: {
|
|
609
609
|
graphicLayer: any;
|
|
610
610
|
init(): void;
|
|
@@ -5,7 +5,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
5
5
|
};
|
|
6
6
|
userCustomInitHooks: () => void;
|
|
7
7
|
userCustomDestroyHooks: () => void;
|
|
8
|
-
|
|
8
|
+
satGlobeEleId: string;
|
|
9
9
|
name: string;
|
|
10
10
|
label: string;
|
|
11
11
|
isInSide: boolean;
|
|
@@ -95,7 +95,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
95
95
|
default: () => void;
|
|
96
96
|
};
|
|
97
97
|
}>> & {}>>;
|
|
98
|
-
|
|
98
|
+
satGlobeEleId: 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;
|
|
@@ -165,7 +165,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
165
165
|
}>;
|
|
166
166
|
SatMapPartMain: import("vue").DefineComponent<{}, {
|
|
167
167
|
mapInstance: import("vue").ShallowRef<import("../../utils").SatMap | null> | undefined;
|
|
168
|
-
|
|
168
|
+
satGlobeEleId: string;
|
|
169
169
|
partStateStore: import("pinia").Store<"SatPartState__sat-earth", import("../../store/modules/partState").PartStateRecord, {}, {
|
|
170
170
|
initRecord(eleId: string): void;
|
|
171
171
|
removeRecord(eleId: string): void;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { SatMap } from '../../utils/map';
|
|
2
2
|
declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
3
3
|
mapInstance: import("vue").ShallowRef<SatMap | null> | undefined;
|
|
4
|
-
|
|
4
|
+
satGlobeEleId: string;
|
|
5
5
|
partStateStore: import("pinia").Store<"SatPartState__sat-earth", import('../../store/modules/partState').PartStateRecord, {}, {
|
|
6
6
|
initRecord(eleId: string): void;
|
|
7
7
|
removeRecord(eleId: string): void;
|
|
@@ -6,7 +6,7 @@ declare const SatMapPart: import('../../utils/installer').SFCWithInstall<import(
|
|
|
6
6
|
};
|
|
7
7
|
userCustomInitHooks: () => void;
|
|
8
8
|
userCustomDestroyHooks: () => void;
|
|
9
|
-
|
|
9
|
+
satGlobeEleId: string;
|
|
10
10
|
name: string;
|
|
11
11
|
label: string;
|
|
12
12
|
isInSide: boolean;
|
|
@@ -96,7 +96,7 @@ declare const SatMapPart: import('../../utils/installer').SFCWithInstall<import(
|
|
|
96
96
|
default: () => void;
|
|
97
97
|
};
|
|
98
98
|
}>> & {}>>;
|
|
99
|
-
|
|
99
|
+
satGlobeEleId: 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;
|
|
@@ -166,7 +166,7 @@ declare const SatMapPart: import('../../utils/installer').SFCWithInstall<import(
|
|
|
166
166
|
}>;
|
|
167
167
|
SatMapPartMain: import("vue").DefineComponent<{}, {
|
|
168
168
|
mapInstance: import("vue").ShallowRef<import("../../utils").SatMap | null> | undefined;
|
|
169
|
-
|
|
169
|
+
satGlobeEleId: string;
|
|
170
170
|
partStateStore: import("pinia").Store<"SatPartState__sat-earth", import("../../store/modules/partState").PartStateRecord, {}, {
|
|
171
171
|
initRecord(eleId: string): void;
|
|
172
172
|
removeRecord(eleId: string): void;
|
|
@@ -5,7 +5,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
5
5
|
};
|
|
6
6
|
userCustomInitHooks: () => void;
|
|
7
7
|
userCustomDestroyHooks: () => void;
|
|
8
|
-
|
|
8
|
+
satGlobeEleId: string;
|
|
9
9
|
name: string;
|
|
10
10
|
label: string;
|
|
11
11
|
isInSide: boolean;
|
|
@@ -95,7 +95,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
95
95
|
default: () => void;
|
|
96
96
|
};
|
|
97
97
|
}>> & {}>>;
|
|
98
|
-
|
|
98
|
+
satGlobeEleId: 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;
|
|
@@ -165,7 +165,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
165
165
|
}>;
|
|
166
166
|
SatMeasureMain: import("vue").DefineComponent<{}, {
|
|
167
167
|
mapInstance: import("vue").ShallowRef<import("../../utils").SatMap | null> | undefined;
|
|
168
|
-
|
|
168
|
+
satGlobeEleId: string;
|
|
169
169
|
layoutStore: import("pinia").Store<"SatLayout__sat-earth", import("../../store/modules/layout").LayoutStateRecord, {}, {
|
|
170
170
|
initRecord(eleId: string): void;
|
|
171
171
|
removeRecord(eleId: string): void;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
2
2
|
mapInstance: import("vue").ShallowRef<import("../../utils").SatMap | null> | undefined;
|
|
3
|
-
|
|
3
|
+
satGlobeEleId: string;
|
|
4
4
|
layoutStore: import("pinia").Store<"SatLayout__sat-earth", import('../../store/modules/layout').LayoutStateRecord, {}, {
|
|
5
5
|
initRecord(eleId: string): void;
|
|
6
6
|
removeRecord(eleId: string): void;
|
|
@@ -6,7 +6,7 @@ declare const SatMeasure: import('../../utils/installer').SFCWithInstall<import(
|
|
|
6
6
|
};
|
|
7
7
|
userCustomInitHooks: () => void;
|
|
8
8
|
userCustomDestroyHooks: () => void;
|
|
9
|
-
|
|
9
|
+
satGlobeEleId: string;
|
|
10
10
|
name: string;
|
|
11
11
|
label: string;
|
|
12
12
|
isInSide: boolean;
|
|
@@ -96,7 +96,7 @@ declare const SatMeasure: import('../../utils/installer').SFCWithInstall<import(
|
|
|
96
96
|
default: () => void;
|
|
97
97
|
};
|
|
98
98
|
}>> & {}>>;
|
|
99
|
-
|
|
99
|
+
satGlobeEleId: 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;
|
|
@@ -166,7 +166,7 @@ declare const SatMeasure: import('../../utils/installer').SFCWithInstall<import(
|
|
|
166
166
|
}>;
|
|
167
167
|
SatMeasureMain: import("vue").DefineComponent<{}, {
|
|
168
168
|
mapInstance: import("vue").ShallowRef<import("../../utils").SatMap | null> | undefined;
|
|
169
|
-
|
|
169
|
+
satGlobeEleId: string;
|
|
170
170
|
layoutStore: import("pinia").Store<"SatLayout__sat-earth", import("../../store/modules/layout").LayoutStateRecord, {}, {
|
|
171
171
|
initRecord(eleId: string): void;
|
|
172
172
|
removeRecord(eleId: string): void;
|
|
@@ -8,7 +8,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
8
8
|
};
|
|
9
9
|
}, {
|
|
10
10
|
isShowDrawer: import("vue").Ref<boolean> | undefined;
|
|
11
|
-
|
|
11
|
+
satGlobeEleId: string;
|
|
12
12
|
compStateStore: import("pinia").Store<"SatCompState__sat-earth", import("../../store/modules/compState").CompStateRecord, {
|
|
13
13
|
getComponents: (state: {
|
|
14
14
|
record: Record<string, import("../../store/modules/compState").CompState>;
|
|
@@ -49,7 +49,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
49
49
|
default: () => boolean;
|
|
50
50
|
};
|
|
51
51
|
}, {
|
|
52
|
-
|
|
52
|
+
satGlobeEleId: string;
|
|
53
53
|
compStateStore: import("pinia").Store<"SatCompState__sat-earth", import("../../store/modules/compState").CompStateRecord, {
|
|
54
54
|
getComponents: (state: {
|
|
55
55
|
record: Record<string, import("../../store/modules/compState").CompState>;
|
|
@@ -5,7 +5,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
5
5
|
};
|
|
6
6
|
}, {
|
|
7
7
|
isShowDrawer: import("vue").Ref<boolean> | undefined;
|
|
8
|
-
|
|
8
|
+
satGlobeEleId: string;
|
|
9
9
|
compStateStore: import("pinia").Store<"SatCompState__sat-earth", import('../../store/modules/compState').CompStateRecord, {
|
|
10
10
|
getComponents: (state: {
|
|
11
11
|
record: Record<string, import('../../store/modules/compState').CompState>;
|
|
@@ -46,7 +46,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
46
46
|
default: () => boolean;
|
|
47
47
|
};
|
|
48
48
|
}, {
|
|
49
|
-
|
|
49
|
+
satGlobeEleId: string;
|
|
50
50
|
compStateStore: import("pinia").Store<"SatCompState__sat-earth", import('../../store/modules/compState').CompStateRecord, {
|
|
51
51
|
getComponents: (state: {
|
|
52
52
|
record: Record<string, import('../../store/modules/compState').CompState>;
|
|
@@ -14,7 +14,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
14
14
|
default: () => boolean;
|
|
15
15
|
};
|
|
16
16
|
}, {
|
|
17
|
-
|
|
17
|
+
satGlobeEleId: string;
|
|
18
18
|
compStateStore: import("pinia").Store<"SatCompState__sat-earth", import('../../../store/modules/compState').CompStateRecord, {
|
|
19
19
|
getComponents: (state: {
|
|
20
20
|
record: Record<string, import('../../../store/modules/compState').CompState>;
|
|
@@ -13,7 +13,7 @@ declare const SatMenuTree: import('../../../utils/installer').SFCWithInstall<imp
|
|
|
13
13
|
default: () => boolean;
|
|
14
14
|
};
|
|
15
15
|
}, {
|
|
16
|
-
|
|
16
|
+
satGlobeEleId: string;
|
|
17
17
|
compStateStore: import("pinia").Store<"SatCompState__sat-earth", import("../../../store/modules/compState").CompStateRecord, {
|
|
18
18
|
getComponents: (state: {
|
|
19
19
|
record: Record<string, import("../../../store/modules/compState").CompState>;
|
|
@@ -82,7 +82,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
82
82
|
default: () => void;
|
|
83
83
|
};
|
|
84
84
|
}>> & {}>>;
|
|
85
|
-
|
|
85
|
+
satGlobeEleId: string;
|
|
86
86
|
record: import("vue").Ref<Record<string, import('../../store/modules/layout').LayoutState>>;
|
|
87
87
|
taskViewStore: import("pinia").Store<"SatTaskView__sat-earth", import('../../store/modules/taskView').TaskViewStateRecord, {}, {
|
|
88
88
|
initRecord(eleId: string): void;
|
|
@@ -81,7 +81,7 @@ declare const SatPanel: import('../../utils/installer').SFCWithInstall<import("v
|
|
|
81
81
|
default: () => void;
|
|
82
82
|
};
|
|
83
83
|
}>> & {}>>;
|
|
84
|
-
|
|
84
|
+
satGlobeEleId: string;
|
|
85
85
|
record: import("vue").Ref<Record<string, import("../../store/modules/layout").LayoutState>>;
|
|
86
86
|
taskViewStore: import("pinia").Store<"SatTaskView__sat-earth", import("../../store/modules/taskView").TaskViewStateRecord, {}, {
|
|
87
87
|
initRecord(eleId: string): void;
|