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
@@ -35,10 +35,110 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
35
35
  active: boolean;
36
36
  ready?: boolean | undefined;
37
37
  } | undefined;
38
+ SatMapPart?: {
39
+ label: string;
40
+ name: string;
41
+ parentName: string;
42
+ enable: boolean;
43
+ active: boolean;
44
+ ready?: boolean | undefined;
45
+ } | undefined;
46
+ SatLocation?: {
47
+ label: string;
48
+ name: string;
49
+ parentName: string;
50
+ enable: boolean;
51
+ active: boolean;
52
+ ready?: boolean | undefined;
53
+ } | undefined;
54
+ SatMeasure?: {
55
+ label: string;
56
+ name: string;
57
+ parentName: string;
58
+ enable: boolean;
59
+ active: boolean;
60
+ ready?: boolean | undefined;
61
+ } | undefined;
62
+ SatPlot?: {
63
+ label: string;
64
+ name: string;
65
+ parentName: string;
66
+ enable: boolean;
67
+ active: boolean;
68
+ ready?: boolean | undefined;
69
+ } | undefined;
70
+ SatPicture?: {
71
+ label: string;
72
+ name: string;
73
+ parentName: string;
74
+ enable: boolean;
75
+ active: boolean;
76
+ ready?: boolean | undefined;
77
+ } | undefined;
78
+ SatSpatialAnalysis?: {
79
+ label: string;
80
+ name: string;
81
+ parentName: string;
82
+ enable: boolean;
83
+ active: boolean;
84
+ ready?: boolean | undefined;
85
+ } | undefined;
86
+ SatTerrainAnalysis?: {
87
+ label: string;
88
+ name: string;
89
+ parentName: string;
90
+ enable: boolean;
91
+ active: boolean;
92
+ ready?: boolean | undefined;
93
+ } | undefined;
94
+ SatModelAnalysis?: {
95
+ label: string;
96
+ name: string;
97
+ parentName: string;
98
+ enable: boolean;
99
+ active: boolean;
100
+ ready?: boolean | undefined;
101
+ } | undefined;
102
+ SatVideoFusion?: {
103
+ label: string;
104
+ name: string;
105
+ parentName: string;
106
+ enable: boolean;
107
+ active: boolean;
108
+ ready?: boolean | undefined;
109
+ } | undefined;
110
+ SatRoam?: {
111
+ label: string;
112
+ name: string;
113
+ parentName: string;
114
+ enable: boolean;
115
+ active: boolean;
116
+ ready?: boolean | undefined;
117
+ } | undefined;
118
+ SatBallistic?: {
119
+ label: string;
120
+ name: string;
121
+ parentName: string;
122
+ enable: boolean;
123
+ active: boolean;
124
+ ready?: boolean | undefined;
125
+ } | undefined;
38
126
  } & import("pinia").PiniaCustomStateProperties<import("../../store/modules/compState").CompState>) => any;
39
127
  }, {
40
128
  setSatSource(item: import("../../store/modules/compState").StateItem): void;
129
+ setSatMapPart(item: import("../../store/modules/compState").StateItem): void;
130
+ setSatLocation(item: import("../../store/modules/compState").StateItem): void;
131
+ setSatMeasure(item: import("../../store/modules/compState").StateItem): void;
132
+ setSatPlot(item: import("../../store/modules/compState").StateItem): void;
133
+ setSatPicture(item: import("../../store/modules/compState").StateItem): void;
134
+ setSatSpatialAnalysis(item: import("../../store/modules/compState").StateItem): void;
135
+ setSatTerrainAnalysis(item: import("../../store/modules/compState").StateItem): void;
136
+ setSatModelAnalysis(item: import("../../store/modules/compState").StateItem): void;
137
+ setSatVideoFusion(item: import("../../store/modules/compState").StateItem): void;
138
+ setSatRoam(item: import("../../store/modules/compState").StateItem): void;
139
+ setSatBallistic(item: import("../../store/modules/compState").StateItem): void;
41
140
  changeCompState(itemName: string, flag: boolean): void;
141
+ unActiveAll(): void;
42
142
  }>;
43
143
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
44
144
  treeData: {
@@ -35,10 +35,110 @@ export declare const SatMenu: import('../../utils/installer').SFCWithInstall<imp
35
35
  active: boolean;
36
36
  ready?: boolean | undefined;
37
37
  } | undefined;
38
+ SatMapPart?: {
39
+ label: string;
40
+ name: string;
41
+ parentName: string;
42
+ enable: boolean;
43
+ active: boolean;
44
+ ready?: boolean | undefined;
45
+ } | undefined;
46
+ SatLocation?: {
47
+ label: string;
48
+ name: string;
49
+ parentName: string;
50
+ enable: boolean;
51
+ active: boolean;
52
+ ready?: boolean | undefined;
53
+ } | undefined;
54
+ SatMeasure?: {
55
+ label: string;
56
+ name: string;
57
+ parentName: string;
58
+ enable: boolean;
59
+ active: boolean;
60
+ ready?: boolean | undefined;
61
+ } | undefined;
62
+ SatPlot?: {
63
+ label: string;
64
+ name: string;
65
+ parentName: string;
66
+ enable: boolean;
67
+ active: boolean;
68
+ ready?: boolean | undefined;
69
+ } | undefined;
70
+ SatPicture?: {
71
+ label: string;
72
+ name: string;
73
+ parentName: string;
74
+ enable: boolean;
75
+ active: boolean;
76
+ ready?: boolean | undefined;
77
+ } | undefined;
78
+ SatSpatialAnalysis?: {
79
+ label: string;
80
+ name: string;
81
+ parentName: string;
82
+ enable: boolean;
83
+ active: boolean;
84
+ ready?: boolean | undefined;
85
+ } | undefined;
86
+ SatTerrainAnalysis?: {
87
+ label: string;
88
+ name: string;
89
+ parentName: string;
90
+ enable: boolean;
91
+ active: boolean;
92
+ ready?: boolean | undefined;
93
+ } | undefined;
94
+ SatModelAnalysis?: {
95
+ label: string;
96
+ name: string;
97
+ parentName: string;
98
+ enable: boolean;
99
+ active: boolean;
100
+ ready?: boolean | undefined;
101
+ } | undefined;
102
+ SatVideoFusion?: {
103
+ label: string;
104
+ name: string;
105
+ parentName: string;
106
+ enable: boolean;
107
+ active: boolean;
108
+ ready?: boolean | undefined;
109
+ } | undefined;
110
+ SatRoam?: {
111
+ label: string;
112
+ name: string;
113
+ parentName: string;
114
+ enable: boolean;
115
+ active: boolean;
116
+ ready?: boolean | undefined;
117
+ } | undefined;
118
+ SatBallistic?: {
119
+ label: string;
120
+ name: string;
121
+ parentName: string;
122
+ enable: boolean;
123
+ active: boolean;
124
+ ready?: boolean | undefined;
125
+ } | undefined;
38
126
  } & import("pinia").PiniaCustomStateProperties<import("../../store/modules/compState").CompState>) => any;
39
127
  }, {
40
128
  setSatSource(item: import("../../store/modules/compState").StateItem): void;
129
+ setSatMapPart(item: import("../../store/modules/compState").StateItem): void;
130
+ setSatLocation(item: import("../../store/modules/compState").StateItem): void;
131
+ setSatMeasure(item: import("../../store/modules/compState").StateItem): void;
132
+ setSatPlot(item: import("../../store/modules/compState").StateItem): void;
133
+ setSatPicture(item: import("../../store/modules/compState").StateItem): void;
134
+ setSatSpatialAnalysis(item: import("../../store/modules/compState").StateItem): void;
135
+ setSatTerrainAnalysis(item: import("../../store/modules/compState").StateItem): void;
136
+ setSatModelAnalysis(item: import("../../store/modules/compState").StateItem): void;
137
+ setSatVideoFusion(item: import("../../store/modules/compState").StateItem): void;
138
+ setSatRoam(item: import("../../store/modules/compState").StateItem): void;
139
+ setSatBallistic(item: import("../../store/modules/compState").StateItem): void;
41
140
  changeCompState(itemName: string, flag: boolean): void;
141
+ unActiveAll(): void;
42
142
  }>;
43
143
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
44
144
  treeData: {
@@ -25,10 +25,110 @@ declare const _sfc_main: import("vue").DefineComponent<{
25
25
  active: boolean;
26
26
  ready?: boolean | undefined;
27
27
  } | undefined;
28
+ SatMapPart?: {
29
+ label: string;
30
+ name: string;
31
+ parentName: string;
32
+ enable: boolean;
33
+ active: boolean;
34
+ ready?: boolean | undefined;
35
+ } | undefined;
36
+ SatLocation?: {
37
+ label: string;
38
+ name: string;
39
+ parentName: string;
40
+ enable: boolean;
41
+ active: boolean;
42
+ ready?: boolean | undefined;
43
+ } | undefined;
44
+ SatMeasure?: {
45
+ label: string;
46
+ name: string;
47
+ parentName: string;
48
+ enable: boolean;
49
+ active: boolean;
50
+ ready?: boolean | undefined;
51
+ } | undefined;
52
+ SatPlot?: {
53
+ label: string;
54
+ name: string;
55
+ parentName: string;
56
+ enable: boolean;
57
+ active: boolean;
58
+ ready?: boolean | undefined;
59
+ } | undefined;
60
+ SatPicture?: {
61
+ label: string;
62
+ name: string;
63
+ parentName: string;
64
+ enable: boolean;
65
+ active: boolean;
66
+ ready?: boolean | undefined;
67
+ } | undefined;
68
+ SatSpatialAnalysis?: {
69
+ label: string;
70
+ name: string;
71
+ parentName: string;
72
+ enable: boolean;
73
+ active: boolean;
74
+ ready?: boolean | undefined;
75
+ } | undefined;
76
+ SatTerrainAnalysis?: {
77
+ label: string;
78
+ name: string;
79
+ parentName: string;
80
+ enable: boolean;
81
+ active: boolean;
82
+ ready?: boolean | undefined;
83
+ } | undefined;
84
+ SatModelAnalysis?: {
85
+ label: string;
86
+ name: string;
87
+ parentName: string;
88
+ enable: boolean;
89
+ active: boolean;
90
+ ready?: boolean | undefined;
91
+ } | undefined;
92
+ SatVideoFusion?: {
93
+ label: string;
94
+ name: string;
95
+ parentName: string;
96
+ enable: boolean;
97
+ active: boolean;
98
+ ready?: boolean | undefined;
99
+ } | undefined;
100
+ SatRoam?: {
101
+ label: string;
102
+ name: string;
103
+ parentName: string;
104
+ enable: boolean;
105
+ active: boolean;
106
+ ready?: boolean | undefined;
107
+ } | undefined;
108
+ SatBallistic?: {
109
+ label: string;
110
+ name: string;
111
+ parentName: string;
112
+ enable: boolean;
113
+ active: boolean;
114
+ ready?: boolean | undefined;
115
+ } | undefined;
28
116
  } & import("pinia").PiniaCustomStateProperties<import('../../../store/modules/compState').CompState>) => any;
29
117
  }, {
30
118
  setSatSource(item: import('../../../store/modules/compState').StateItem): void;
119
+ setSatMapPart(item: import('../../../store/modules/compState').StateItem): void;
120
+ setSatLocation(item: import('../../../store/modules/compState').StateItem): void;
121
+ setSatMeasure(item: import('../../../store/modules/compState').StateItem): void;
122
+ setSatPlot(item: import('../../../store/modules/compState').StateItem): void;
123
+ setSatPicture(item: import('../../../store/modules/compState').StateItem): void;
124
+ setSatSpatialAnalysis(item: import('../../../store/modules/compState').StateItem): void;
125
+ setSatTerrainAnalysis(item: import('../../../store/modules/compState').StateItem): void;
126
+ setSatModelAnalysis(item: import('../../../store/modules/compState').StateItem): void;
127
+ setSatVideoFusion(item: import('../../../store/modules/compState').StateItem): void;
128
+ setSatRoam(item: import('../../../store/modules/compState').StateItem): void;
129
+ setSatBallistic(item: import('../../../store/modules/compState').StateItem): void;
31
130
  changeCompState(itemName: string, flag: boolean): void;
131
+ unActiveAll(): void;
32
132
  }>;
33
133
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
34
134
  treeData: {
@@ -22,10 +22,110 @@ export declare const SatMenuTree: import('../../../utils/installer').SFCWithInst
22
22
  active: boolean;
23
23
  ready?: boolean | undefined;
24
24
  } | undefined;
25
+ SatMapPart?: {
26
+ label: string;
27
+ name: string;
28
+ parentName: string;
29
+ enable: boolean;
30
+ active: boolean;
31
+ ready?: boolean | undefined;
32
+ } | undefined;
33
+ SatLocation?: {
34
+ label: string;
35
+ name: string;
36
+ parentName: string;
37
+ enable: boolean;
38
+ active: boolean;
39
+ ready?: boolean | undefined;
40
+ } | undefined;
41
+ SatMeasure?: {
42
+ label: string;
43
+ name: string;
44
+ parentName: string;
45
+ enable: boolean;
46
+ active: boolean;
47
+ ready?: boolean | undefined;
48
+ } | undefined;
49
+ SatPlot?: {
50
+ label: string;
51
+ name: string;
52
+ parentName: string;
53
+ enable: boolean;
54
+ active: boolean;
55
+ ready?: boolean | undefined;
56
+ } | undefined;
57
+ SatPicture?: {
58
+ label: string;
59
+ name: string;
60
+ parentName: string;
61
+ enable: boolean;
62
+ active: boolean;
63
+ ready?: boolean | undefined;
64
+ } | undefined;
65
+ SatSpatialAnalysis?: {
66
+ label: string;
67
+ name: string;
68
+ parentName: string;
69
+ enable: boolean;
70
+ active: boolean;
71
+ ready?: boolean | undefined;
72
+ } | undefined;
73
+ SatTerrainAnalysis?: {
74
+ label: string;
75
+ name: string;
76
+ parentName: string;
77
+ enable: boolean;
78
+ active: boolean;
79
+ ready?: boolean | undefined;
80
+ } | undefined;
81
+ SatModelAnalysis?: {
82
+ label: string;
83
+ name: string;
84
+ parentName: string;
85
+ enable: boolean;
86
+ active: boolean;
87
+ ready?: boolean | undefined;
88
+ } | undefined;
89
+ SatVideoFusion?: {
90
+ label: string;
91
+ name: string;
92
+ parentName: string;
93
+ enable: boolean;
94
+ active: boolean;
95
+ ready?: boolean | undefined;
96
+ } | undefined;
97
+ SatRoam?: {
98
+ label: string;
99
+ name: string;
100
+ parentName: string;
101
+ enable: boolean;
102
+ active: boolean;
103
+ ready?: boolean | undefined;
104
+ } | undefined;
105
+ SatBallistic?: {
106
+ label: string;
107
+ name: string;
108
+ parentName: string;
109
+ enable: boolean;
110
+ active: boolean;
111
+ ready?: boolean | undefined;
112
+ } | undefined;
25
113
  } & import("pinia").PiniaCustomStateProperties<import("../../../store/modules/compState").CompState>) => any;
26
114
  }, {
27
115
  setSatSource(item: import("../../../store/modules/compState").StateItem): void;
116
+ setSatMapPart(item: import("../../../store/modules/compState").StateItem): void;
117
+ setSatLocation(item: import("../../../store/modules/compState").StateItem): void;
118
+ setSatMeasure(item: import("../../../store/modules/compState").StateItem): void;
119
+ setSatPlot(item: import("../../../store/modules/compState").StateItem): void;
120
+ setSatPicture(item: import("../../../store/modules/compState").StateItem): void;
121
+ setSatSpatialAnalysis(item: import("../../../store/modules/compState").StateItem): void;
122
+ setSatTerrainAnalysis(item: import("../../../store/modules/compState").StateItem): void;
123
+ setSatModelAnalysis(item: import("../../../store/modules/compState").StateItem): void;
124
+ setSatVideoFusion(item: import("../../../store/modules/compState").StateItem): void;
125
+ setSatRoam(item: import("../../../store/modules/compState").StateItem): void;
126
+ setSatBallistic(item: import("../../../store/modules/compState").StateItem): void;
28
127
  changeCompState(itemName: string, flag: boolean): void;
128
+ unActiveAll(): void;
29
129
  }>;
30
130
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
31
131
  treeData: {
@@ -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;