sat-earth 0.0.21 → 0.0.24

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.
Files changed (53) hide show
  1. package/README.md +58 -0
  2. package/dist/packages/components/analysis-model/SatModelAnalysis.vue.d.ts +246 -0
  3. package/dist/packages/components/analysis-model/index.d.ts +246 -0
  4. package/dist/packages/components/analysis-spatial/SatSpatialAnalysis.vue.d.ts +246 -0
  5. package/dist/packages/components/analysis-spatial/index.d.ts +246 -0
  6. package/dist/packages/components/analysis-terrain/SatTerrainAnalysis.vue.d.ts +246 -0
  7. package/dist/packages/components/analysis-terrain/index.d.ts +246 -0
  8. package/dist/packages/components/ballistic/SatBallistic.vue.d.ts +246 -0
  9. package/dist/packages/components/ballistic/index.d.ts +246 -0
  10. package/dist/packages/components/globe/SatGlobe.vue.d.ts +100 -0
  11. package/dist/packages/components/globe/index.d.ts +100 -0
  12. package/dist/packages/components/index.d.ts +11 -0
  13. package/dist/packages/components/location/SatCoordinate.vue.d.ts +383 -0
  14. package/dist/packages/components/location/SatLocation.vue.d.ts +669 -0
  15. package/dist/packages/components/location/SatLocationMain.vue.d.ts +424 -0
  16. package/dist/packages/components/location/SatPathPlan.vue.d.ts +21 -0
  17. package/dist/packages/components/location/SatPoiQuery.vue.d.ts +17 -0
  18. package/dist/packages/components/location/helpers.d.ts +34 -0
  19. package/dist/packages/components/location/index.d.ts +669 -0
  20. package/dist/packages/components/map-part/SatMapPart.vue.d.ts +253 -0
  21. package/dist/packages/components/map-part/SatMapPartMain.vue.d.ts +8 -0
  22. package/dist/packages/components/map-part/index.d.ts +253 -0
  23. package/dist/packages/components/measure/SatMeasure.vue.d.ts +246 -0
  24. package/dist/packages/components/measure/index.d.ts +246 -0
  25. package/dist/packages/components/menu/MenuDrawer.vue.d.ts +100 -0
  26. package/dist/packages/components/menu/SatMenu.vue.d.ts +100 -0
  27. package/dist/packages/components/menu/index.d.ts +100 -0
  28. package/dist/packages/components/menu/tree/SatMenuTree.vue.d.ts +100 -0
  29. package/dist/packages/components/menu/tree/index.d.ts +100 -0
  30. package/dist/packages/components/picture/SatPicture.vue.d.ts +246 -0
  31. package/dist/packages/components/picture/index.d.ts +246 -0
  32. package/dist/packages/components/plot/SatPlot.vue.d.ts +246 -0
  33. package/dist/packages/components/plot/index.d.ts +246 -0
  34. package/dist/packages/components/roam/SatRoam.vue.d.ts +246 -0
  35. package/dist/packages/components/roam/index.d.ts +246 -0
  36. package/dist/packages/components/source/SatSource.vue.d.ts +115 -0
  37. package/dist/packages/components/source/SatSourceMain.vue.d.ts +14 -0
  38. package/dist/packages/components/source/TerrainExaggerationSlider.vue.d.ts +14 -0
  39. package/dist/packages/components/source/index.d.ts +115 -0
  40. package/dist/packages/components/video-fusion/SatVideoFusion.vue.d.ts +246 -0
  41. package/dist/packages/components/video-fusion/index.d.ts +246 -0
  42. package/dist/packages/global.d.ts +22 -0
  43. package/dist/packages/hooks/ui/useElLoading.d.ts +1 -0
  44. package/dist/packages/store/modules/compState.d.ts +211 -0
  45. package/dist/packages/store/modules/partState.d.ts +15 -0
  46. package/dist/packages/utils/coordTrans.d.ts +43 -0
  47. package/dist/packages/utils/elValidator.d.ts +1 -0
  48. package/dist/packages/utils/map/satMap/index.d.ts +5 -2
  49. package/dist/packages/utils/types/index.d.ts +4 -1
  50. package/dist/sat-earth.es.js +15788 -9807
  51. package/dist/sat-earth.umd.js +51 -36
  52. package/dist/style.css +1 -1
  53. package/package.json +1 -1
@@ -0,0 +1,246 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{
2
+ visible: {
3
+ type: BooleanConstructor;
4
+ default: boolean;
5
+ };
6
+ }, {
7
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
8
+ visible: {
9
+ type: BooleanConstructor;
10
+ default: boolean;
11
+ };
12
+ }>> & {
13
+ "onUpdate:visible"?: ((...args: any[]) => any) | undefined;
14
+ }>>;
15
+ emits: (event: "update:visible", ...args: any[]) => void;
16
+ compStateStore: import("pinia").Store<"SatCompState", import('../../store/modules/compState').CompState, {
17
+ getComponents: (state: {
18
+ SatSource?: {
19
+ label: string;
20
+ name: string;
21
+ parentName: string;
22
+ enable: boolean;
23
+ active: boolean;
24
+ ready?: boolean | undefined;
25
+ } | undefined;
26
+ SatMapPart?: {
27
+ label: string;
28
+ name: string;
29
+ parentName: string;
30
+ enable: boolean;
31
+ active: boolean;
32
+ ready?: boolean | undefined;
33
+ } | undefined;
34
+ SatLocation?: {
35
+ label: string;
36
+ name: string;
37
+ parentName: string;
38
+ enable: boolean;
39
+ active: boolean;
40
+ ready?: boolean | undefined;
41
+ } | undefined;
42
+ SatMeasure?: {
43
+ label: string;
44
+ name: string;
45
+ parentName: string;
46
+ enable: boolean;
47
+ active: boolean;
48
+ ready?: boolean | undefined;
49
+ } | undefined;
50
+ SatPlot?: {
51
+ label: string;
52
+ name: string;
53
+ parentName: string;
54
+ enable: boolean;
55
+ active: boolean;
56
+ ready?: boolean | undefined;
57
+ } | undefined;
58
+ SatPicture?: {
59
+ label: string;
60
+ name: string;
61
+ parentName: string;
62
+ enable: boolean;
63
+ active: boolean;
64
+ ready?: boolean | undefined;
65
+ } | undefined;
66
+ SatSpatialAnalysis?: {
67
+ label: string;
68
+ name: string;
69
+ parentName: string;
70
+ enable: boolean;
71
+ active: boolean;
72
+ ready?: boolean | undefined;
73
+ } | undefined;
74
+ SatTerrainAnalysis?: {
75
+ label: string;
76
+ name: string;
77
+ parentName: string;
78
+ enable: boolean;
79
+ active: boolean;
80
+ ready?: boolean | undefined;
81
+ } | undefined;
82
+ SatModelAnalysis?: {
83
+ label: string;
84
+ name: string;
85
+ parentName: string;
86
+ enable: boolean;
87
+ active: boolean;
88
+ ready?: boolean | undefined;
89
+ } | undefined;
90
+ SatVideoFusion?: {
91
+ label: string;
92
+ name: string;
93
+ parentName: string;
94
+ enable: boolean;
95
+ active: boolean;
96
+ ready?: boolean | undefined;
97
+ } | undefined;
98
+ SatRoam?: {
99
+ label: string;
100
+ name: string;
101
+ parentName: string;
102
+ enable: boolean;
103
+ active: boolean;
104
+ ready?: boolean | undefined;
105
+ } | undefined;
106
+ SatBallistic?: {
107
+ label: string;
108
+ name: string;
109
+ parentName: string;
110
+ enable: boolean;
111
+ active: boolean;
112
+ ready?: boolean | undefined;
113
+ } | undefined;
114
+ } & import("pinia").PiniaCustomStateProperties<import('../../store/modules/compState').CompState>) => any;
115
+ }, {
116
+ setSatSource(item: import('../../store/modules/compState').StateItem): void;
117
+ setSatMapPart(item: import('../../store/modules/compState').StateItem): void;
118
+ setSatLocation(item: import('../../store/modules/compState').StateItem): void;
119
+ setSatMeasure(item: import('../../store/modules/compState').StateItem): void;
120
+ setSatPlot(item: import('../../store/modules/compState').StateItem): void;
121
+ setSatPicture(item: import('../../store/modules/compState').StateItem): void;
122
+ setSatSpatialAnalysis(item: import('../../store/modules/compState').StateItem): void;
123
+ setSatTerrainAnalysis(item: import('../../store/modules/compState').StateItem): void;
124
+ setSatModelAnalysis(item: import('../../store/modules/compState').StateItem): void;
125
+ setSatVideoFusion(item: import('../../store/modules/compState').StateItem): void;
126
+ setSatRoam(item: import('../../store/modules/compState').StateItem): void;
127
+ setSatBallistic(item: import('../../store/modules/compState').StateItem): void;
128
+ changeCompState(itemName: string, flag: boolean): void;
129
+ unActiveAll(): void;
130
+ }>;
131
+ name: string;
132
+ isInSide: boolean;
133
+ isNeedInit: boolean;
134
+ isShowInMenu: boolean;
135
+ isReadyRef: import("vue").ComputedRef<boolean | undefined>;
136
+ isActiveRef: import("vue").ComputedRef<boolean>;
137
+ toggleEnable: (isEnable: boolean) => void;
138
+ toggleActive: (isActive: boolean) => void;
139
+ toggleReady: (isReady: boolean) => void;
140
+ isInit: import("vue").ComputedRef<boolean | undefined>;
141
+ init: () => void;
142
+ destroy: () => void;
143
+ shrink: () => void;
144
+ close: () => void;
145
+ renderSFC: () => void;
146
+ SatPanel: import("vue").DefineComponent<{
147
+ title: {
148
+ type: StringConstructor;
149
+ required: true;
150
+ };
151
+ isShrink: {
152
+ type: BooleanConstructor;
153
+ default: boolean;
154
+ };
155
+ isClose: {
156
+ type: BooleanConstructor;
157
+ default: boolean;
158
+ };
159
+ isDrag: {
160
+ type: BooleanConstructor;
161
+ default: boolean;
162
+ };
163
+ shrinkEvent: {
164
+ type: FunctionConstructor;
165
+ default: () => void;
166
+ };
167
+ closeEvent: {
168
+ type: FunctionConstructor;
169
+ default: () => void;
170
+ };
171
+ }, {
172
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
173
+ title: {
174
+ type: StringConstructor;
175
+ required: true;
176
+ };
177
+ isShrink: {
178
+ type: BooleanConstructor;
179
+ default: boolean;
180
+ };
181
+ isClose: {
182
+ type: BooleanConstructor;
183
+ default: boolean;
184
+ };
185
+ isDrag: {
186
+ type: BooleanConstructor;
187
+ default: boolean;
188
+ };
189
+ shrinkEvent: {
190
+ type: FunctionConstructor;
191
+ default: () => void;
192
+ };
193
+ closeEvent: {
194
+ type: FunctionConstructor;
195
+ default: () => void;
196
+ };
197
+ }>> & {
198
+ [x: string & `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
199
+ }>>;
200
+ isMobile: import("vue").Ref<boolean>;
201
+ draggable: import("vue").Ref<boolean>;
202
+ dragElement: import("vue").Ref<HTMLElement | null>;
203
+ style: import("vue").ComputedRef<string>;
204
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
205
+ title: {
206
+ type: StringConstructor;
207
+ required: true;
208
+ };
209
+ isShrink: {
210
+ type: BooleanConstructor;
211
+ default: boolean;
212
+ };
213
+ isClose: {
214
+ type: BooleanConstructor;
215
+ default: boolean;
216
+ };
217
+ isDrag: {
218
+ type: BooleanConstructor;
219
+ default: boolean;
220
+ };
221
+ shrinkEvent: {
222
+ type: FunctionConstructor;
223
+ default: () => void;
224
+ };
225
+ closeEvent: {
226
+ type: FunctionConstructor;
227
+ default: () => void;
228
+ };
229
+ }>>, {
230
+ isShrink: boolean;
231
+ isClose: boolean;
232
+ isDrag: boolean;
233
+ shrinkEvent: Function;
234
+ closeEvent: Function;
235
+ }>;
236
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:visible"[], "update:visible", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
237
+ visible: {
238
+ type: BooleanConstructor;
239
+ default: boolean;
240
+ };
241
+ }>> & {
242
+ "onUpdate:visible"?: ((...args: any[]) => any) | undefined;
243
+ }, {
244
+ visible: boolean;
245
+ }>;
246
+ export default _sfc_main;
@@ -0,0 +1,246 @@
1
+ export declare const SatMeasure: import('../../utils/installer').SFCWithInstall<import("vue").DefineComponent<{
2
+ visible: {
3
+ type: BooleanConstructor;
4
+ default: boolean;
5
+ };
6
+ }, {
7
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
8
+ visible: {
9
+ type: BooleanConstructor;
10
+ default: boolean;
11
+ };
12
+ }>> & {
13
+ "onUpdate:visible"?: ((...args: any[]) => any) | undefined;
14
+ }>>;
15
+ emits: (event: "update:visible", ...args: any[]) => void;
16
+ compStateStore: import("pinia").Store<"SatCompState", import("../../store/modules/compState").CompState, {
17
+ getComponents: (state: {
18
+ SatSource?: {
19
+ label: string;
20
+ name: string;
21
+ parentName: string;
22
+ enable: boolean;
23
+ active: boolean;
24
+ ready?: boolean | undefined;
25
+ } | undefined;
26
+ SatMapPart?: {
27
+ label: string;
28
+ name: string;
29
+ parentName: string;
30
+ enable: boolean;
31
+ active: boolean;
32
+ ready?: boolean | undefined;
33
+ } | undefined;
34
+ SatLocation?: {
35
+ label: string;
36
+ name: string;
37
+ parentName: string;
38
+ enable: boolean;
39
+ active: boolean;
40
+ ready?: boolean | undefined;
41
+ } | undefined;
42
+ SatMeasure?: {
43
+ label: string;
44
+ name: string;
45
+ parentName: string;
46
+ enable: boolean;
47
+ active: boolean;
48
+ ready?: boolean | undefined;
49
+ } | undefined;
50
+ SatPlot?: {
51
+ label: string;
52
+ name: string;
53
+ parentName: string;
54
+ enable: boolean;
55
+ active: boolean;
56
+ ready?: boolean | undefined;
57
+ } | undefined;
58
+ SatPicture?: {
59
+ label: string;
60
+ name: string;
61
+ parentName: string;
62
+ enable: boolean;
63
+ active: boolean;
64
+ ready?: boolean | undefined;
65
+ } | undefined;
66
+ SatSpatialAnalysis?: {
67
+ label: string;
68
+ name: string;
69
+ parentName: string;
70
+ enable: boolean;
71
+ active: boolean;
72
+ ready?: boolean | undefined;
73
+ } | undefined;
74
+ SatTerrainAnalysis?: {
75
+ label: string;
76
+ name: string;
77
+ parentName: string;
78
+ enable: boolean;
79
+ active: boolean;
80
+ ready?: boolean | undefined;
81
+ } | undefined;
82
+ SatModelAnalysis?: {
83
+ label: string;
84
+ name: string;
85
+ parentName: string;
86
+ enable: boolean;
87
+ active: boolean;
88
+ ready?: boolean | undefined;
89
+ } | undefined;
90
+ SatVideoFusion?: {
91
+ label: string;
92
+ name: string;
93
+ parentName: string;
94
+ enable: boolean;
95
+ active: boolean;
96
+ ready?: boolean | undefined;
97
+ } | undefined;
98
+ SatRoam?: {
99
+ label: string;
100
+ name: string;
101
+ parentName: string;
102
+ enable: boolean;
103
+ active: boolean;
104
+ ready?: boolean | undefined;
105
+ } | undefined;
106
+ SatBallistic?: {
107
+ label: string;
108
+ name: string;
109
+ parentName: string;
110
+ enable: boolean;
111
+ active: boolean;
112
+ ready?: boolean | undefined;
113
+ } | undefined;
114
+ } & import("pinia").PiniaCustomStateProperties<import("../../store/modules/compState").CompState>) => any;
115
+ }, {
116
+ setSatSource(item: import("../../store/modules/compState").StateItem): void;
117
+ setSatMapPart(item: import("../../store/modules/compState").StateItem): void;
118
+ setSatLocation(item: import("../../store/modules/compState").StateItem): void;
119
+ setSatMeasure(item: import("../../store/modules/compState").StateItem): void;
120
+ setSatPlot(item: import("../../store/modules/compState").StateItem): void;
121
+ setSatPicture(item: import("../../store/modules/compState").StateItem): void;
122
+ setSatSpatialAnalysis(item: import("../../store/modules/compState").StateItem): void;
123
+ setSatTerrainAnalysis(item: import("../../store/modules/compState").StateItem): void;
124
+ setSatModelAnalysis(item: import("../../store/modules/compState").StateItem): void;
125
+ setSatVideoFusion(item: import("../../store/modules/compState").StateItem): void;
126
+ setSatRoam(item: import("../../store/modules/compState").StateItem): void;
127
+ setSatBallistic(item: import("../../store/modules/compState").StateItem): void;
128
+ changeCompState(itemName: string, flag: boolean): void;
129
+ unActiveAll(): void;
130
+ }>;
131
+ name: string;
132
+ isInSide: boolean;
133
+ isNeedInit: boolean;
134
+ isShowInMenu: boolean;
135
+ isReadyRef: import("vue").ComputedRef<boolean | undefined>;
136
+ isActiveRef: import("vue").ComputedRef<boolean>;
137
+ toggleEnable: (isEnable: boolean) => void;
138
+ toggleActive: (isActive: boolean) => void;
139
+ toggleReady: (isReady: boolean) => void;
140
+ isInit: import("vue").ComputedRef<boolean | undefined>;
141
+ init: () => void;
142
+ destroy: () => void;
143
+ shrink: () => void;
144
+ close: () => void;
145
+ renderSFC: () => void;
146
+ SatPanel: import("vue").DefineComponent<{
147
+ title: {
148
+ type: StringConstructor;
149
+ required: true;
150
+ };
151
+ isShrink: {
152
+ type: BooleanConstructor;
153
+ default: boolean;
154
+ };
155
+ isClose: {
156
+ type: BooleanConstructor;
157
+ default: boolean;
158
+ };
159
+ isDrag: {
160
+ type: BooleanConstructor;
161
+ default: boolean;
162
+ };
163
+ shrinkEvent: {
164
+ type: FunctionConstructor;
165
+ default: () => void;
166
+ };
167
+ closeEvent: {
168
+ type: FunctionConstructor;
169
+ default: () => void;
170
+ };
171
+ }, {
172
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
173
+ title: {
174
+ type: StringConstructor;
175
+ required: true;
176
+ };
177
+ isShrink: {
178
+ type: BooleanConstructor;
179
+ default: boolean;
180
+ };
181
+ isClose: {
182
+ type: BooleanConstructor;
183
+ default: boolean;
184
+ };
185
+ isDrag: {
186
+ type: BooleanConstructor;
187
+ default: boolean;
188
+ };
189
+ shrinkEvent: {
190
+ type: FunctionConstructor;
191
+ default: () => void;
192
+ };
193
+ closeEvent: {
194
+ type: FunctionConstructor;
195
+ default: () => void;
196
+ };
197
+ }>> & {
198
+ [x: string & `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
199
+ }>>;
200
+ isMobile: import("vue").Ref<boolean>;
201
+ draggable: import("vue").Ref<boolean>;
202
+ dragElement: import("vue").Ref<HTMLElement | null>;
203
+ style: import("vue").ComputedRef<string>;
204
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
205
+ title: {
206
+ type: StringConstructor;
207
+ required: true;
208
+ };
209
+ isShrink: {
210
+ type: BooleanConstructor;
211
+ default: boolean;
212
+ };
213
+ isClose: {
214
+ type: BooleanConstructor;
215
+ default: boolean;
216
+ };
217
+ isDrag: {
218
+ type: BooleanConstructor;
219
+ default: boolean;
220
+ };
221
+ shrinkEvent: {
222
+ type: FunctionConstructor;
223
+ default: () => void;
224
+ };
225
+ closeEvent: {
226
+ type: FunctionConstructor;
227
+ default: () => void;
228
+ };
229
+ }>>, {
230
+ isShrink: boolean;
231
+ isClose: boolean;
232
+ isDrag: boolean;
233
+ shrinkEvent: Function;
234
+ closeEvent: Function;
235
+ }>;
236
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:visible"[], "update:visible", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
237
+ visible: {
238
+ type: BooleanConstructor;
239
+ default: boolean;
240
+ };
241
+ }>> & {
242
+ "onUpdate:visible"?: ((...args: any[]) => any) | undefined;
243
+ }, {
244
+ visible: boolean;
245
+ }>>;
246
+ export default SatMeasure;
@@ -33,10 +33,110 @@ declare const _sfc_main: import("vue").DefineComponent<{
33
33
  active: boolean;
34
34
  ready?: boolean | undefined;
35
35
  } | undefined;
36
+ SatMapPart?: {
37
+ label: string;
38
+ name: string;
39
+ parentName: string;
40
+ enable: boolean;
41
+ active: boolean;
42
+ ready?: boolean | undefined;
43
+ } | undefined;
44
+ SatLocation?: {
45
+ label: string;
46
+ name: string;
47
+ parentName: string;
48
+ enable: boolean;
49
+ active: boolean;
50
+ ready?: boolean | undefined;
51
+ } | undefined;
52
+ SatMeasure?: {
53
+ label: string;
54
+ name: string;
55
+ parentName: string;
56
+ enable: boolean;
57
+ active: boolean;
58
+ ready?: boolean | undefined;
59
+ } | undefined;
60
+ SatPlot?: {
61
+ label: string;
62
+ name: string;
63
+ parentName: string;
64
+ enable: boolean;
65
+ active: boolean;
66
+ ready?: boolean | undefined;
67
+ } | undefined;
68
+ SatPicture?: {
69
+ label: string;
70
+ name: string;
71
+ parentName: string;
72
+ enable: boolean;
73
+ active: boolean;
74
+ ready?: boolean | undefined;
75
+ } | undefined;
76
+ SatSpatialAnalysis?: {
77
+ label: string;
78
+ name: string;
79
+ parentName: string;
80
+ enable: boolean;
81
+ active: boolean;
82
+ ready?: boolean | undefined;
83
+ } | undefined;
84
+ SatTerrainAnalysis?: {
85
+ label: string;
86
+ name: string;
87
+ parentName: string;
88
+ enable: boolean;
89
+ active: boolean;
90
+ ready?: boolean | undefined;
91
+ } | undefined;
92
+ SatModelAnalysis?: {
93
+ label: string;
94
+ name: string;
95
+ parentName: string;
96
+ enable: boolean;
97
+ active: boolean;
98
+ ready?: boolean | undefined;
99
+ } | undefined;
100
+ SatVideoFusion?: {
101
+ label: string;
102
+ name: string;
103
+ parentName: string;
104
+ enable: boolean;
105
+ active: boolean;
106
+ ready?: boolean | undefined;
107
+ } | undefined;
108
+ SatRoam?: {
109
+ label: string;
110
+ name: string;
111
+ parentName: string;
112
+ enable: boolean;
113
+ active: boolean;
114
+ ready?: boolean | undefined;
115
+ } | undefined;
116
+ SatBallistic?: {
117
+ label: string;
118
+ name: string;
119
+ parentName: string;
120
+ enable: boolean;
121
+ active: boolean;
122
+ ready?: boolean | undefined;
123
+ } | undefined;
36
124
  } & import("pinia").PiniaCustomStateProperties<import("../../store/modules/compState").CompState>) => any;
37
125
  }, {
38
126
  setSatSource(item: import("../../store/modules/compState").StateItem): void;
127
+ setSatMapPart(item: import("../../store/modules/compState").StateItem): void;
128
+ setSatLocation(item: import("../../store/modules/compState").StateItem): void;
129
+ setSatMeasure(item: import("../../store/modules/compState").StateItem): void;
130
+ setSatPlot(item: import("../../store/modules/compState").StateItem): void;
131
+ setSatPicture(item: import("../../store/modules/compState").StateItem): void;
132
+ setSatSpatialAnalysis(item: import("../../store/modules/compState").StateItem): void;
133
+ setSatTerrainAnalysis(item: import("../../store/modules/compState").StateItem): void;
134
+ setSatModelAnalysis(item: import("../../store/modules/compState").StateItem): void;
135
+ setSatVideoFusion(item: import("../../store/modules/compState").StateItem): void;
136
+ setSatRoam(item: import("../../store/modules/compState").StateItem): void;
137
+ setSatBallistic(item: import("../../store/modules/compState").StateItem): void;
39
138
  changeCompState(itemName: string, flag: boolean): void;
139
+ unActiveAll(): void;
40
140
  }>;
41
141
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
42
142
  treeData: {