sat-earth 0.6.2 → 0.6.5
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 +18 -2
- package/dist/components/analysis-model/SatModelAnalysis.vue.d.ts +2 -2
- package/dist/components/analysis-model/index.d.ts +2 -2
- package/dist/components/analysis-spatial/SatSpatialAnalysis.vue.d.ts +3 -3
- package/dist/components/analysis-spatial/SatSpatialAnalysisMain.vue.d.ts +1 -1
- package/dist/components/analysis-spatial/index.d.ts +3 -3
- package/dist/components/analysis-spatial/modules/AnalysisSection.vue.d.ts +1 -1
- package/dist/components/analysis-terrain/SatTerrainAnalysis.vue.d.ts +2 -2
- package/dist/components/analysis-terrain/index.d.ts +2 -2
- package/dist/components/globe/CameraBookmarkPanel.vue.d.ts +1 -1
- package/dist/components/globe/MapSplitPanel.vue.d.ts +1 -1
- package/dist/components/globe/SatGlobe.vue.d.ts +6 -5
- package/dist/components/globe/index.d.ts +6 -5
- package/dist/components/location/SatLocation.vue.d.ts +2 -2
- package/dist/components/location/index.d.ts +2 -2
- package/dist/components/map-part/SatMapPart.vue.d.ts +3 -3
- package/dist/components/map-part/SatMapPartMain.vue.d.ts +1 -1
- package/dist/components/map-part/index.d.ts +3 -3
- package/dist/components/measure/SatMeasure.vue.d.ts +3 -3
- package/dist/components/measure/SatMeasureMain.vue.d.ts +1 -1
- package/dist/components/measure/index.d.ts +3 -3
- package/dist/components/menu/SatMenu.vue.d.ts +1 -1
- package/dist/components/menu/SatMenuMain.vue.d.ts +1 -1
- package/dist/components/menu/index.d.ts +1 -1
- package/dist/components/menu/tree/SatMenuTree.vue.d.ts +1 -1
- package/dist/components/menu/tree/index.d.ts +1 -1
- package/dist/components/picture/SatPicture.vue.d.ts +2 -2
- package/dist/components/picture/index.d.ts +2 -2
- package/dist/components/plot/PlotEdit.vue.d.ts +7 -7
- package/dist/components/plot/PlotEditAttr.vue.d.ts +2 -2
- package/dist/components/plot/PlotEditCoord.vue.d.ts +2 -2
- package/dist/components/plot/PlotEditStyle.vue.d.ts +2 -2
- package/dist/components/plot/PlotGroup.vue.d.ts +1 -1
- package/dist/components/plot/PlotSourceList.vue.d.ts +1 -1
- package/dist/components/plot/SatPlot.vue.d.ts +13 -13
- package/dist/components/plot/SatPlotMain.vue.d.ts +11 -11
- package/dist/components/plot/index.d.ts +13 -13
- package/dist/components/roam/SatRoam.vue.d.ts +2 -2
- package/dist/components/roam/index.d.ts +2 -2
- package/dist/components/source/SatSource.vue.d.ts +3 -3
- package/dist/components/source/SatSourceMain.vue.d.ts +1 -1
- package/dist/components/source/index.d.ts +3 -3
- package/dist/components/video-fusion/SatVideoFusion.vue.d.ts +2 -2
- package/dist/components/video-fusion/index.d.ts +2 -2
- package/dist/hooks/ui/useLoading.d.ts +1 -1
- package/dist/sat-earth/index.d.ts +1 -0
- package/dist/sat-earth.mjs +1801 -1650
- package/dist/sat-earth.umd.js +6 -2
- package/dist/store/modules/compState.d.ts +2 -2
- package/dist/store/modules/layer.d.ts +2 -2
- package/dist/store/modules/layout.d.ts +2 -2
- package/dist/store/modules/partState.d.ts +2 -2
- package/dist/store/modules/plot.d.ts +2 -2
- package/dist/style.css +1 -1
- package/dist/types/element-plus-global.d.ts +108 -0
- package/dist/{global.d.ts → types/global.d.ts} +0 -0
- package/dist/types/module.d.ts +7 -0
- package/dist/utils/map/satMap/analysis-spatial/index.d.ts +1 -5
- package/dist/utils/map/satMap/analysis-spatial/section.d.ts +13 -1
- package/dist/utils/map/satMap/index.d.ts +3 -7
- package/dist/utils/types/index.d.ts +5 -0
- package/package.json +11 -9
- package/dist/module.d.ts +0 -2
package/README.md
CHANGED
|
@@ -75,6 +75,13 @@ npm i sat-earth
|
|
|
75
75
|
<script src="/Cesium/Cesium.js" type="text/javascript"></script>
|
|
76
76
|
```
|
|
77
77
|
|
|
78
|
+
- 如果您的项目也用了`pinia`,请修改您项目中的piniaStore直接使用`sat-earth`的导出,并且main.ts中不需要在调用App.use(piniaStore)
|
|
79
|
+
```ts
|
|
80
|
+
// const piniaStore = createPinia()
|
|
81
|
+
// export { piniaStore }
|
|
82
|
+
export { piniaStore } from 'sat-earth'
|
|
83
|
+
```
|
|
84
|
+
|
|
78
85
|
- 在 `main.[jt]s` 中引入我们的 `sat-earth` 资源
|
|
79
86
|
|
|
80
87
|
```ts
|
|
@@ -140,11 +147,16 @@ import { satMapTypes, type SatMenu_Type_MenuItem } from 'sat-earth'
|
|
|
140
147
|
(
|
|
141
148
|
custom: {
|
|
142
149
|
// 工具栏新增项
|
|
150
|
+
layoutTheme: {
|
|
151
|
+
primaryColor: '#409eff',
|
|
152
|
+
isDark: true,
|
|
153
|
+
showDarkRadio: true
|
|
154
|
+
},
|
|
143
155
|
toolbar: {
|
|
144
156
|
mapSplit: true // 开启卷帘工具
|
|
145
157
|
bookmark: true // 开启视角书签工具
|
|
146
158
|
keyboardRoam: true // 开启键盘漫游功能
|
|
147
|
-
}
|
|
159
|
+
},
|
|
148
160
|
plotModelUrlPrefix?: string // 标绘模型地址前缀
|
|
149
161
|
layers: {
|
|
150
162
|
// list 这是要加入到 'SatSource' 数据源管理中的自定义Layer图层,参数与 mars3d构造 Layer 的参数
|
|
@@ -187,6 +199,11 @@ const options: satMapTypes.SatMapOptions = {
|
|
|
187
199
|
list: []
|
|
188
200
|
},
|
|
189
201
|
custom: {
|
|
202
|
+
layoutTheme: {
|
|
203
|
+
primaryColor: '#409eff',
|
|
204
|
+
isDark: true,
|
|
205
|
+
showDarkRadio: true
|
|
206
|
+
},
|
|
190
207
|
toolbar: {
|
|
191
208
|
mapSplit: true, // 开启卷帘工具
|
|
192
209
|
bookmark: true, // 开启视角书签工具
|
|
@@ -276,7 +293,6 @@ onMounted(() => {
|
|
|
276
293
|
<SatModelAnalysis></SatModelAnalysis>
|
|
277
294
|
<SatVideoFusion></SatVideoFusion>
|
|
278
295
|
<SatRoam></SatRoam>
|
|
279
|
-
<SatBallistic></SatBallistic>
|
|
280
296
|
<!-- 自定义菜单项 -->
|
|
281
297
|
<template #custom-enable>
|
|
282
298
|
<SatMenuTree
|
|
@@ -13,7 +13,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
13
13
|
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
14
14
|
}>>;
|
|
15
15
|
emits: (event: "update:visible", ...args: any[]) => void;
|
|
16
|
-
compStateStore: import("pinia").Store<"
|
|
16
|
+
compStateStore: import("pinia").Store<"SatCompState__sat-earth", import('../../store/modules/compState').CompState, {
|
|
17
17
|
getComponents: (state: {
|
|
18
18
|
SatSource?: {
|
|
19
19
|
label: string;
|
|
@@ -119,7 +119,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
119
119
|
changeCompState(itemName: string, flag: boolean): void;
|
|
120
120
|
unActiveAll(): void;
|
|
121
121
|
}>;
|
|
122
|
-
layoutStore: import("pinia").Store<"
|
|
122
|
+
layoutStore: import("pinia").Store<"SatLayout__sat-earth", import('../../store/modules/layout').LayoutState, {}, {
|
|
123
123
|
setIsDark(val: boolean): void;
|
|
124
124
|
setIsMobile(val: boolean): void;
|
|
125
125
|
setIsForceHorizontal(val: boolean): void;
|
|
@@ -13,7 +13,7 @@ export declare const SatModelAnalysis: import('../../utils/installer').SFCWithIn
|
|
|
13
13
|
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
14
14
|
}>>;
|
|
15
15
|
emits: (event: "update:visible", ...args: any[]) => void;
|
|
16
|
-
compStateStore: import("pinia").Store<"
|
|
16
|
+
compStateStore: import("pinia").Store<"SatCompState__sat-earth", import("../../store/modules/compState").CompState, {
|
|
17
17
|
getComponents: (state: {
|
|
18
18
|
SatSource?: {
|
|
19
19
|
label: string;
|
|
@@ -119,7 +119,7 @@ export declare const SatModelAnalysis: import('../../utils/installer').SFCWithIn
|
|
|
119
119
|
changeCompState(itemName: string, flag: boolean): void;
|
|
120
120
|
unActiveAll(): void;
|
|
121
121
|
}>;
|
|
122
|
-
layoutStore: import("pinia").Store<"
|
|
122
|
+
layoutStore: import("pinia").Store<"SatLayout__sat-earth", import("../../store/modules/layout").LayoutState, {}, {
|
|
123
123
|
setIsDark(val: boolean): void;
|
|
124
124
|
setIsMobile(val: boolean): void;
|
|
125
125
|
setIsForceHorizontal(val: boolean): void;
|
|
@@ -13,7 +13,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
13
13
|
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
14
14
|
}>>;
|
|
15
15
|
emits: (event: "update:visible", ...args: any[]) => void;
|
|
16
|
-
compStateStore: import("pinia").Store<"
|
|
16
|
+
compStateStore: import("pinia").Store<"SatCompState__sat-earth", import('../../store/modules/compState').CompState, {
|
|
17
17
|
getComponents: (state: {
|
|
18
18
|
SatSource?: {
|
|
19
19
|
label: string;
|
|
@@ -119,7 +119,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
119
119
|
changeCompState(itemName: string, flag: boolean): void;
|
|
120
120
|
unActiveAll(): void;
|
|
121
121
|
}>;
|
|
122
|
-
layoutStore: import("pinia").Store<"
|
|
122
|
+
layoutStore: import("pinia").Store<"SatLayout__sat-earth", import('../../store/modules/layout').LayoutState, {}, {
|
|
123
123
|
setIsDark(val: boolean): void;
|
|
124
124
|
setIsMobile(val: boolean): void;
|
|
125
125
|
setIsForceHorizontal(val: boolean): void;
|
|
@@ -262,7 +262,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
262
262
|
analysisList: readonly ["剖面分析", "方量分析", "通视分析", "可视域分析", "缓冲分析", "淹没分析"];
|
|
263
263
|
currentAnalysis: import("vue").Ref<"剖面分析" | "方量分析" | "通视分析" | "可视域分析" | "缓冲分析" | "淹没分析">;
|
|
264
264
|
AnalysisSection: import("vue").DefineComponent<{}, {
|
|
265
|
-
|
|
265
|
+
sectionUnit: import("../../utils/map/satMap/analysis-spatial/section").Section;
|
|
266
266
|
isMobile: import("vue").Ref<boolean>;
|
|
267
267
|
startDraw: () => void;
|
|
268
268
|
stopDraw: () => void;
|
|
@@ -2,7 +2,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
2
2
|
analysisList: readonly ["剖面分析", "方量分析", "通视分析", "可视域分析", "缓冲分析", "淹没分析"];
|
|
3
3
|
currentAnalysis: import("vue").Ref<"剖面分析" | "方量分析" | "通视分析" | "可视域分析" | "缓冲分析" | "淹没分析">;
|
|
4
4
|
AnalysisSection: import("vue").DefineComponent<{}, {
|
|
5
|
-
|
|
5
|
+
sectionUnit: import("../../utils/map/satMap/analysis-spatial/section").Section;
|
|
6
6
|
isMobile: import("vue").Ref<boolean>;
|
|
7
7
|
startDraw: () => void;
|
|
8
8
|
stopDraw: () => void;
|
|
@@ -13,7 +13,7 @@ export declare const SatSpatialAnalysis: import('../../utils/installer').SFCWith
|
|
|
13
13
|
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
14
14
|
}>>;
|
|
15
15
|
emits: (event: "update:visible", ...args: any[]) => void;
|
|
16
|
-
compStateStore: import("pinia").Store<"
|
|
16
|
+
compStateStore: import("pinia").Store<"SatCompState__sat-earth", import("../../store/modules/compState").CompState, {
|
|
17
17
|
getComponents: (state: {
|
|
18
18
|
SatSource?: {
|
|
19
19
|
label: string;
|
|
@@ -119,7 +119,7 @@ export declare const SatSpatialAnalysis: import('../../utils/installer').SFCWith
|
|
|
119
119
|
changeCompState(itemName: string, flag: boolean): void;
|
|
120
120
|
unActiveAll(): void;
|
|
121
121
|
}>;
|
|
122
|
-
layoutStore: import("pinia").Store<"
|
|
122
|
+
layoutStore: import("pinia").Store<"SatLayout__sat-earth", import("../../store/modules/layout").LayoutState, {}, {
|
|
123
123
|
setIsDark(val: boolean): void;
|
|
124
124
|
setIsMobile(val: boolean): void;
|
|
125
125
|
setIsForceHorizontal(val: boolean): void;
|
|
@@ -262,7 +262,7 @@ export declare const SatSpatialAnalysis: import('../../utils/installer').SFCWith
|
|
|
262
262
|
analysisList: readonly ["剖面分析", "方量分析", "通视分析", "可视域分析", "缓冲分析", "淹没分析"];
|
|
263
263
|
currentAnalysis: import("vue").Ref<"剖面分析" | "方量分析" | "通视分析" | "可视域分析" | "缓冲分析" | "淹没分析">;
|
|
264
264
|
AnalysisSection: import("vue").DefineComponent<{}, {
|
|
265
|
-
|
|
265
|
+
sectionUnit: import("../../utils/map/satMap/analysis-spatial/section").Section;
|
|
266
266
|
isMobile: import("vue").Ref<boolean>;
|
|
267
267
|
startDraw: () => void;
|
|
268
268
|
stopDraw: () => void;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
2
|
-
|
|
2
|
+
sectionUnit: import("../../../utils/map/satMap/analysis-spatial/section").Section;
|
|
3
3
|
isMobile: import("vue").Ref<boolean>;
|
|
4
4
|
startDraw: () => void;
|
|
5
5
|
stopDraw: () => void;
|
|
@@ -13,7 +13,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
13
13
|
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
14
14
|
}>>;
|
|
15
15
|
emits: (event: "update:visible", ...args: any[]) => void;
|
|
16
|
-
compStateStore: import("pinia").Store<"
|
|
16
|
+
compStateStore: import("pinia").Store<"SatCompState__sat-earth", import('../../store/modules/compState').CompState, {
|
|
17
17
|
getComponents: (state: {
|
|
18
18
|
SatSource?: {
|
|
19
19
|
label: string;
|
|
@@ -119,7 +119,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
119
119
|
changeCompState(itemName: string, flag: boolean): void;
|
|
120
120
|
unActiveAll(): void;
|
|
121
121
|
}>;
|
|
122
|
-
layoutStore: import("pinia").Store<"
|
|
122
|
+
layoutStore: import("pinia").Store<"SatLayout__sat-earth", import('../../store/modules/layout').LayoutState, {}, {
|
|
123
123
|
setIsDark(val: boolean): void;
|
|
124
124
|
setIsMobile(val: boolean): void;
|
|
125
125
|
setIsForceHorizontal(val: boolean): void;
|
|
@@ -13,7 +13,7 @@ export declare const SatTerrainAnalysis: import('../../utils/installer').SFCWith
|
|
|
13
13
|
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
14
14
|
}>>;
|
|
15
15
|
emits: (event: "update:visible", ...args: any[]) => void;
|
|
16
|
-
compStateStore: import("pinia").Store<"
|
|
16
|
+
compStateStore: import("pinia").Store<"SatCompState__sat-earth", import("../../store/modules/compState").CompState, {
|
|
17
17
|
getComponents: (state: {
|
|
18
18
|
SatSource?: {
|
|
19
19
|
label: string;
|
|
@@ -119,7 +119,7 @@ export declare const SatTerrainAnalysis: import('../../utils/installer').SFCWith
|
|
|
119
119
|
changeCompState(itemName: string, flag: boolean): void;
|
|
120
120
|
unActiveAll(): void;
|
|
121
121
|
}>;
|
|
122
|
-
layoutStore: import("pinia").Store<"
|
|
122
|
+
layoutStore: import("pinia").Store<"SatLayout__sat-earth", import("../../store/modules/layout").LayoutState, {}, {
|
|
123
123
|
setIsDark(val: boolean): void;
|
|
124
124
|
setIsMobile(val: boolean): void;
|
|
125
125
|
setIsForceHorizontal(val: boolean): void;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type Bookmark } from './helpers';
|
|
2
2
|
declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
3
|
-
layerStore: import("pinia").Store<"
|
|
3
|
+
layerStore: import("pinia").Store<"SatLayerDev__sat-earth", import('../../store/modules/layer').LayerState, {}, {
|
|
4
4
|
setLayerList(val: import("../../utils/types").SatLayerDev[]): void;
|
|
5
5
|
setLayerTree(val: import('../../store/modules/layer').TreeSatLayer[]): void;
|
|
6
6
|
setMapSplitPanelVisible(val: boolean): void;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
2
|
-
layerStore: import("pinia").Store<"
|
|
2
|
+
layerStore: import("pinia").Store<"SatLayerDev__sat-earth", import('../../store/modules/layer').LayerState, {}, {
|
|
3
3
|
setLayerList(val: import("../../utils/types").SatLayerDev[]): void;
|
|
4
4
|
setLayerTree(val: import('../../store/modules/layer').TreeSatLayer[]): void;
|
|
5
5
|
setMapSplitPanelVisible(val: boolean): void;
|
|
@@ -11,7 +11,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
11
11
|
default: () => SatMapOptions;
|
|
12
12
|
};
|
|
13
13
|
}, {
|
|
14
|
-
compStore: import("pinia").Store<"
|
|
14
|
+
compStore: import("pinia").Store<"SatCompState__sat-earth", import('../../store/modules/compState').CompState, {
|
|
15
15
|
getComponents: (state: {
|
|
16
16
|
SatSource?: {
|
|
17
17
|
label: string;
|
|
@@ -117,13 +117,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
117
117
|
changeCompState(itemName: string, flag: boolean): void;
|
|
118
118
|
unActiveAll(): void;
|
|
119
119
|
}>;
|
|
120
|
-
layerStore: import("pinia").Store<"
|
|
120
|
+
layerStore: import("pinia").Store<"SatLayerDev__sat-earth", import('../../store/modules/layer').LayerState, {}, {
|
|
121
121
|
setLayerList(val: SatLayerDev[]): void;
|
|
122
122
|
setLayerTree(val: TreeSatLayer[]): void;
|
|
123
123
|
setMapSplitPanelVisible(val: boolean): void;
|
|
124
124
|
setCameraBookmarkPanelVisible(val: boolean): void;
|
|
125
125
|
}>;
|
|
126
|
-
layoutStore: import("pinia").Store<"
|
|
126
|
+
layoutStore: import("pinia").Store<"SatLayout__sat-earth", import('../../store/modules/layout').LayoutState, {}, {
|
|
127
127
|
setIsDark(val: boolean): void;
|
|
128
128
|
setIsMobile(val: boolean): void;
|
|
129
129
|
setIsForceHorizontal(val: boolean): void;
|
|
@@ -142,6 +142,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
142
142
|
[x: string & `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
143
143
|
}>>;
|
|
144
144
|
merged: SatMapOptions;
|
|
145
|
+
showDarkRadio: import("vue").Ref<boolean | undefined>;
|
|
145
146
|
isDark: import("vue").Ref<boolean>;
|
|
146
147
|
DarkIcon: {
|
|
147
148
|
name: string;
|
|
@@ -150,7 +151,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
150
151
|
name: string;
|
|
151
152
|
};
|
|
152
153
|
MapSplitPanel: import("vue").DefineComponent<{}, {
|
|
153
|
-
layerStore: import("pinia").Store<"
|
|
154
|
+
layerStore: import("pinia").Store<"SatLayerDev__sat-earth", import('../../store/modules/layer').LayerState, {}, {
|
|
154
155
|
setLayerList(val: SatLayerDev[]): void;
|
|
155
156
|
setLayerTree(val: TreeSatLayer[]): void;
|
|
156
157
|
setMapSplitPanelVisible(val: boolean): void;
|
|
@@ -164,7 +165,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
164
165
|
setSplitList: () => void;
|
|
165
166
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
166
167
|
CameraBookmarkPanel: import("vue").DefineComponent<{}, {
|
|
167
|
-
layerStore: import("pinia").Store<"
|
|
168
|
+
layerStore: import("pinia").Store<"SatLayerDev__sat-earth", import('../../store/modules/layer').LayerState, {}, {
|
|
168
169
|
setLayerList(val: SatLayerDev[]): void;
|
|
169
170
|
setLayerTree(val: TreeSatLayer[]): void;
|
|
170
171
|
setMapSplitPanelVisible(val: boolean): void;
|
|
@@ -8,7 +8,7 @@ export declare const SatGlobe: import('../../utils/installer').SFCWithInstall<im
|
|
|
8
8
|
default: () => import("../../utils/types").SatMapOptions;
|
|
9
9
|
};
|
|
10
10
|
}, {
|
|
11
|
-
compStore: import("pinia").Store<"
|
|
11
|
+
compStore: import("pinia").Store<"SatCompState__sat-earth", import("../../store/modules/compState").CompState, {
|
|
12
12
|
getComponents: (state: {
|
|
13
13
|
SatSource?: {
|
|
14
14
|
label: string;
|
|
@@ -114,13 +114,13 @@ export declare const SatGlobe: import('../../utils/installer').SFCWithInstall<im
|
|
|
114
114
|
changeCompState(itemName: string, flag: boolean): void;
|
|
115
115
|
unActiveAll(): void;
|
|
116
116
|
}>;
|
|
117
|
-
layerStore: import("pinia").Store<"
|
|
117
|
+
layerStore: import("pinia").Store<"SatLayerDev__sat-earth", import("../../store/modules/layer").LayerState, {}, {
|
|
118
118
|
setLayerList(val: import("../../utils/types").SatLayerDev[]): void;
|
|
119
119
|
setLayerTree(val: import("../../store/modules/layer").TreeSatLayer[]): void;
|
|
120
120
|
setMapSplitPanelVisible(val: boolean): void;
|
|
121
121
|
setCameraBookmarkPanelVisible(val: boolean): void;
|
|
122
122
|
}>;
|
|
123
|
-
layoutStore: import("pinia").Store<"
|
|
123
|
+
layoutStore: import("pinia").Store<"SatLayout__sat-earth", import("../../store/modules/layout").LayoutState, {}, {
|
|
124
124
|
setIsDark(val: boolean): void;
|
|
125
125
|
setIsMobile(val: boolean): void;
|
|
126
126
|
setIsForceHorizontal(val: boolean): void;
|
|
@@ -139,6 +139,7 @@ export declare const SatGlobe: import('../../utils/installer').SFCWithInstall<im
|
|
|
139
139
|
[x: string & `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
140
140
|
}>>;
|
|
141
141
|
merged: import("../../utils/types").SatMapOptions;
|
|
142
|
+
showDarkRadio: import("vue").Ref<boolean | undefined>;
|
|
142
143
|
isDark: import("vue").Ref<boolean>;
|
|
143
144
|
DarkIcon: {
|
|
144
145
|
name: string;
|
|
@@ -147,7 +148,7 @@ export declare const SatGlobe: import('../../utils/installer').SFCWithInstall<im
|
|
|
147
148
|
name: string;
|
|
148
149
|
};
|
|
149
150
|
MapSplitPanel: import("vue").DefineComponent<{}, {
|
|
150
|
-
layerStore: import("pinia").Store<"
|
|
151
|
+
layerStore: import("pinia").Store<"SatLayerDev__sat-earth", import("../../store/modules/layer").LayerState, {}, {
|
|
151
152
|
setLayerList(val: import("../../utils/types").SatLayerDev[]): void;
|
|
152
153
|
setLayerTree(val: import("../../store/modules/layer").TreeSatLayer[]): void;
|
|
153
154
|
setMapSplitPanelVisible(val: boolean): void;
|
|
@@ -161,7 +162,7 @@ export declare const SatGlobe: import('../../utils/installer').SFCWithInstall<im
|
|
|
161
162
|
setSplitList: () => void;
|
|
162
163
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
163
164
|
CameraBookmarkPanel: import("vue").DefineComponent<{}, {
|
|
164
|
-
layerStore: import("pinia").Store<"
|
|
165
|
+
layerStore: import("pinia").Store<"SatLayerDev__sat-earth", import("../../store/modules/layer").LayerState, {}, {
|
|
165
166
|
setLayerList(val: import("../../utils/types").SatLayerDev[]): void;
|
|
166
167
|
setLayerTree(val: import("../../store/modules/layer").TreeSatLayer[]): void;
|
|
167
168
|
setMapSplitPanelVisible(val: boolean): void;
|
|
@@ -13,7 +13,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
13
13
|
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
14
14
|
}>>;
|
|
15
15
|
emits: (event: "update:visible", ...args: any[]) => void;
|
|
16
|
-
compStateStore: import("pinia").Store<"
|
|
16
|
+
compStateStore: import("pinia").Store<"SatCompState__sat-earth", import('../../store/modules/compState').CompState, {
|
|
17
17
|
getComponents: (state: {
|
|
18
18
|
SatSource?: {
|
|
19
19
|
label: string;
|
|
@@ -119,7 +119,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
119
119
|
changeCompState(itemName: string, flag: boolean): void;
|
|
120
120
|
unActiveAll(): void;
|
|
121
121
|
}>;
|
|
122
|
-
layoutStore: import("pinia").Store<"
|
|
122
|
+
layoutStore: import("pinia").Store<"SatLayout__sat-earth", import('../../store/modules/layout').LayoutState, {}, {
|
|
123
123
|
setIsDark(val: boolean): void;
|
|
124
124
|
setIsMobile(val: boolean): void;
|
|
125
125
|
setIsForceHorizontal(val: boolean): void;
|
|
@@ -13,7 +13,7 @@ export declare const SatLocation: import('../../utils/installer').SFCWithInstall
|
|
|
13
13
|
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
14
14
|
}>>;
|
|
15
15
|
emits: (event: "update:visible", ...args: any[]) => void;
|
|
16
|
-
compStateStore: import("pinia").Store<"
|
|
16
|
+
compStateStore: import("pinia").Store<"SatCompState__sat-earth", import("../../store/modules/compState").CompState, {
|
|
17
17
|
getComponents: (state: {
|
|
18
18
|
SatSource?: {
|
|
19
19
|
label: string;
|
|
@@ -119,7 +119,7 @@ export declare const SatLocation: import('../../utils/installer').SFCWithInstall
|
|
|
119
119
|
changeCompState(itemName: string, flag: boolean): void;
|
|
120
120
|
unActiveAll(): void;
|
|
121
121
|
}>;
|
|
122
|
-
layoutStore: import("pinia").Store<"
|
|
122
|
+
layoutStore: import("pinia").Store<"SatLayout__sat-earth", import("../../store/modules/layout").LayoutState, {}, {
|
|
123
123
|
setIsDark(val: boolean): void;
|
|
124
124
|
setIsMobile(val: boolean): void;
|
|
125
125
|
setIsForceHorizontal(val: boolean): void;
|
|
@@ -13,7 +13,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
13
13
|
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
14
14
|
}>>;
|
|
15
15
|
emits: (event: "update:visible", ...args: any[]) => void;
|
|
16
|
-
compStateStore: import("pinia").Store<"
|
|
16
|
+
compStateStore: import("pinia").Store<"SatCompState__sat-earth", import('../../store/modules/compState').CompState, {
|
|
17
17
|
getComponents: (state: {
|
|
18
18
|
SatSource?: {
|
|
19
19
|
label: string;
|
|
@@ -119,7 +119,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
119
119
|
changeCompState(itemName: string, flag: boolean): void;
|
|
120
120
|
unActiveAll(): void;
|
|
121
121
|
}>;
|
|
122
|
-
layoutStore: import("pinia").Store<"
|
|
122
|
+
layoutStore: import("pinia").Store<"SatLayout__sat-earth", import('../../store/modules/layout').LayoutState, {}, {
|
|
123
123
|
setIsDark(val: boolean): void;
|
|
124
124
|
setIsMobile(val: boolean): void;
|
|
125
125
|
setIsForceHorizontal(val: boolean): void;
|
|
@@ -259,7 +259,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
259
259
|
closeEvent: Function;
|
|
260
260
|
}>;
|
|
261
261
|
SatMapPartMain: import("vue").DefineComponent<{}, {
|
|
262
|
-
partStateStore: import("pinia").Store<"
|
|
262
|
+
partStateStore: import("pinia").Store<"SatPartState__sat-earth", import("../../store/modules/partState").PartState, {}, {
|
|
263
263
|
setParts(val: import("../../store/modules/partState").StateItem[]): void;
|
|
264
264
|
}>;
|
|
265
265
|
setPartListFromStorage: () => void;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
2
|
-
partStateStore: import("pinia").Store<"
|
|
2
|
+
partStateStore: import("pinia").Store<"SatPartState__sat-earth", import('../../store/modules/partState').PartState, {}, {
|
|
3
3
|
setParts(val: import('../../store/modules/partState').StateItem[]): void;
|
|
4
4
|
}>;
|
|
5
5
|
setPartListFromStorage: () => void;
|
|
@@ -13,7 +13,7 @@ export declare const SatMapPart: import('../../utils/installer').SFCWithInstall<
|
|
|
13
13
|
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
14
14
|
}>>;
|
|
15
15
|
emits: (event: "update:visible", ...args: any[]) => void;
|
|
16
|
-
compStateStore: import("pinia").Store<"
|
|
16
|
+
compStateStore: import("pinia").Store<"SatCompState__sat-earth", import("../../store/modules/compState").CompState, {
|
|
17
17
|
getComponents: (state: {
|
|
18
18
|
SatSource?: {
|
|
19
19
|
label: string;
|
|
@@ -119,7 +119,7 @@ export declare const SatMapPart: import('../../utils/installer').SFCWithInstall<
|
|
|
119
119
|
changeCompState(itemName: string, flag: boolean): void;
|
|
120
120
|
unActiveAll(): void;
|
|
121
121
|
}>;
|
|
122
|
-
layoutStore: import("pinia").Store<"
|
|
122
|
+
layoutStore: import("pinia").Store<"SatLayout__sat-earth", import("../../store/modules/layout").LayoutState, {}, {
|
|
123
123
|
setIsDark(val: boolean): void;
|
|
124
124
|
setIsMobile(val: boolean): void;
|
|
125
125
|
setIsForceHorizontal(val: boolean): void;
|
|
@@ -259,7 +259,7 @@ export declare const SatMapPart: import('../../utils/installer').SFCWithInstall<
|
|
|
259
259
|
closeEvent: Function;
|
|
260
260
|
}>;
|
|
261
261
|
SatMapPartMain: import("vue").DefineComponent<{}, {
|
|
262
|
-
partStateStore: import("pinia").Store<"
|
|
262
|
+
partStateStore: import("pinia").Store<"SatPartState__sat-earth", import("../../store/modules/partState").PartState, {}, {
|
|
263
263
|
setParts(val: import("../../store/modules/partState").StateItem[]): void;
|
|
264
264
|
}>;
|
|
265
265
|
setPartListFromStorage: () => void;
|
|
@@ -13,7 +13,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
13
13
|
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
14
14
|
}>>;
|
|
15
15
|
emits: (event: "update:visible", ...args: any[]) => void;
|
|
16
|
-
compStateStore: import("pinia").Store<"
|
|
16
|
+
compStateStore: import("pinia").Store<"SatCompState__sat-earth", import('../../store/modules/compState').CompState, {
|
|
17
17
|
getComponents: (state: {
|
|
18
18
|
SatSource?: {
|
|
19
19
|
label: string;
|
|
@@ -119,7 +119,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
119
119
|
changeCompState(itemName: string, flag: boolean): void;
|
|
120
120
|
unActiveAll(): void;
|
|
121
121
|
}>;
|
|
122
|
-
layoutStore: import("pinia").Store<"
|
|
122
|
+
layoutStore: import("pinia").Store<"SatLayout__sat-earth", import('../../store/modules/layout').LayoutState, {}, {
|
|
123
123
|
setIsDark(val: boolean): void;
|
|
124
124
|
setIsMobile(val: boolean): void;
|
|
125
125
|
setIsForceHorizontal(val: boolean): void;
|
|
@@ -260,7 +260,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
260
260
|
}>;
|
|
261
261
|
SatMeasureMain: import("vue").DefineComponent<{}, {
|
|
262
262
|
isMobile: import("vue").Ref<boolean>;
|
|
263
|
-
Measure: import("../../utils/map/satMap/measure").Measure
|
|
263
|
+
Measure: import("../../utils/map/satMap/measure").Measure;
|
|
264
264
|
measureLength: () => void;
|
|
265
265
|
measureArea: () => void;
|
|
266
266
|
measureHeight: () => void;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
2
2
|
isMobile: import("vue").Ref<boolean>;
|
|
3
|
-
Measure: import("../../utils/map/satMap/measure").Measure
|
|
3
|
+
Measure: import("../../utils/map/satMap/measure").Measure;
|
|
4
4
|
measureLength: () => void;
|
|
5
5
|
measureArea: () => void;
|
|
6
6
|
measureHeight: () => void;
|
|
@@ -13,7 +13,7 @@ export declare const SatMeasure: import('../../utils/installer').SFCWithInstall<
|
|
|
13
13
|
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
14
14
|
}>>;
|
|
15
15
|
emits: (event: "update:visible", ...args: any[]) => void;
|
|
16
|
-
compStateStore: import("pinia").Store<"
|
|
16
|
+
compStateStore: import("pinia").Store<"SatCompState__sat-earth", import("../../store/modules/compState").CompState, {
|
|
17
17
|
getComponents: (state: {
|
|
18
18
|
SatSource?: {
|
|
19
19
|
label: string;
|
|
@@ -119,7 +119,7 @@ export declare const SatMeasure: import('../../utils/installer').SFCWithInstall<
|
|
|
119
119
|
changeCompState(itemName: string, flag: boolean): void;
|
|
120
120
|
unActiveAll(): void;
|
|
121
121
|
}>;
|
|
122
|
-
layoutStore: import("pinia").Store<"
|
|
122
|
+
layoutStore: import("pinia").Store<"SatLayout__sat-earth", import("../../store/modules/layout").LayoutState, {}, {
|
|
123
123
|
setIsDark(val: boolean): void;
|
|
124
124
|
setIsMobile(val: boolean): void;
|
|
125
125
|
setIsForceHorizontal(val: boolean): void;
|
|
@@ -260,7 +260,7 @@ export declare const SatMeasure: import('../../utils/installer').SFCWithInstall<
|
|
|
260
260
|
}>;
|
|
261
261
|
SatMeasureMain: import("vue").DefineComponent<{}, {
|
|
262
262
|
isMobile: import("vue").Ref<boolean>;
|
|
263
|
-
Measure: import("../../utils/map/satMap/measure").Measure
|
|
263
|
+
Measure: import("../../utils/map/satMap/measure").Measure;
|
|
264
264
|
measureLength: () => void;
|
|
265
265
|
measureArea: () => void;
|
|
266
266
|
measureHeight: () => void;
|
|
@@ -25,7 +25,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
25
25
|
default: () => boolean;
|
|
26
26
|
};
|
|
27
27
|
}, {
|
|
28
|
-
compStateStore: import("pinia").Store<"
|
|
28
|
+
compStateStore: import("pinia").Store<"SatCompState__sat-earth", import("../../store/modules/compState").CompState, {
|
|
29
29
|
getComponents: (state: {
|
|
30
30
|
SatSource?: {
|
|
31
31
|
label: string;
|
|
@@ -23,7 +23,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
23
23
|
default: () => boolean;
|
|
24
24
|
};
|
|
25
25
|
}, {
|
|
26
|
-
compStateStore: import("pinia").Store<"
|
|
26
|
+
compStateStore: import("pinia").Store<"SatCompState__sat-earth", import("../../store/modules/compState").CompState, {
|
|
27
27
|
getComponents: (state: {
|
|
28
28
|
SatSource?: {
|
|
29
29
|
label: string;
|
|
@@ -25,7 +25,7 @@ export declare const SatMenu: import('../../utils/installer').SFCWithInstall<imp
|
|
|
25
25
|
default: () => boolean;
|
|
26
26
|
};
|
|
27
27
|
}, {
|
|
28
|
-
compStateStore: import("pinia").Store<"
|
|
28
|
+
compStateStore: import("pinia").Store<"SatCompState__sat-earth", import("../../store/modules/compState").CompState, {
|
|
29
29
|
getComponents: (state: {
|
|
30
30
|
SatSource?: {
|
|
31
31
|
label: string;
|
|
@@ -14,7 +14,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
14
14
|
default: () => boolean;
|
|
15
15
|
};
|
|
16
16
|
}, {
|
|
17
|
-
compStateStore: import("pinia").Store<"
|
|
17
|
+
compStateStore: import("pinia").Store<"SatCompState__sat-earth", import('../../../store/modules/compState').CompState, {
|
|
18
18
|
getComponents: (state: {
|
|
19
19
|
SatSource?: {
|
|
20
20
|
label: string;
|
|
@@ -12,7 +12,7 @@ export declare const SatMenuTree: import('../../../utils/installer').SFCWithInst
|
|
|
12
12
|
default: () => boolean;
|
|
13
13
|
};
|
|
14
14
|
}, {
|
|
15
|
-
compStateStore: import("pinia").Store<"
|
|
15
|
+
compStateStore: import("pinia").Store<"SatCompState__sat-earth", import("../../../store/modules/compState").CompState, {
|
|
16
16
|
getComponents: (state: {
|
|
17
17
|
SatSource?: {
|
|
18
18
|
label: string;
|
|
@@ -14,7 +14,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
14
14
|
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
15
15
|
}>>;
|
|
16
16
|
emits: (event: "update:visible", ...args: any[]) => void;
|
|
17
|
-
compStateStore: import("pinia").Store<"
|
|
17
|
+
compStateStore: import("pinia").Store<"SatCompState__sat-earth", import('../../store/modules/compState').CompState, {
|
|
18
18
|
getComponents: (state: {
|
|
19
19
|
SatSource?: {
|
|
20
20
|
label: string;
|
|
@@ -120,7 +120,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
120
120
|
changeCompState(itemName: string, flag: boolean): void;
|
|
121
121
|
unActiveAll(): void;
|
|
122
122
|
}>;
|
|
123
|
-
layoutStore: import("pinia").Store<"
|
|
123
|
+
layoutStore: import("pinia").Store<"SatLayout__sat-earth", import('../../store/modules/layout').LayoutState, {}, {
|
|
124
124
|
setIsDark(val: boolean): void;
|
|
125
125
|
setIsMobile(val: boolean): void;
|
|
126
126
|
setIsForceHorizontal(val: boolean): void;
|
|
@@ -14,7 +14,7 @@ export declare const SatPicture: import('../../utils/installer').SFCWithInstall<
|
|
|
14
14
|
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
15
15
|
}>>;
|
|
16
16
|
emits: (event: "update:visible", ...args: any[]) => void;
|
|
17
|
-
compStateStore: import("pinia").Store<"
|
|
17
|
+
compStateStore: import("pinia").Store<"SatCompState__sat-earth", import("../../store/modules/compState").CompState, {
|
|
18
18
|
getComponents: (state: {
|
|
19
19
|
SatSource?: {
|
|
20
20
|
label: string;
|
|
@@ -120,7 +120,7 @@ export declare const SatPicture: import('../../utils/installer').SFCWithInstall<
|
|
|
120
120
|
changeCompState(itemName: string, flag: boolean): void;
|
|
121
121
|
unActiveAll(): void;
|
|
122
122
|
}>;
|
|
123
|
-
layoutStore: import("pinia").Store<"
|
|
123
|
+
layoutStore: import("pinia").Store<"SatLayout__sat-earth", import("../../store/modules/layout").LayoutState, {}, {
|
|
124
124
|
setIsDark(val: boolean): void;
|
|
125
125
|
setIsMobile(val: boolean): void;
|
|
126
126
|
setIsForceHorizontal(val: boolean): void;
|