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.
- package/README.md +58 -0
- package/dist/packages/components/analysis-model/SatModelAnalysis.vue.d.ts +246 -0
- package/dist/packages/components/analysis-model/index.d.ts +246 -0
- package/dist/packages/components/analysis-spatial/SatSpatialAnalysis.vue.d.ts +246 -0
- package/dist/packages/components/analysis-spatial/index.d.ts +246 -0
- package/dist/packages/components/analysis-terrain/SatTerrainAnalysis.vue.d.ts +246 -0
- package/dist/packages/components/analysis-terrain/index.d.ts +246 -0
- package/dist/packages/components/ballistic/SatBallistic.vue.d.ts +246 -0
- package/dist/packages/components/ballistic/index.d.ts +246 -0
- package/dist/packages/components/globe/SatGlobe.vue.d.ts +100 -0
- package/dist/packages/components/globe/index.d.ts +100 -0
- package/dist/packages/components/index.d.ts +11 -0
- package/dist/packages/components/location/SatCoordinate.vue.d.ts +383 -0
- package/dist/packages/components/location/SatLocation.vue.d.ts +669 -0
- package/dist/packages/components/location/SatLocationMain.vue.d.ts +424 -0
- package/dist/packages/components/location/SatPathPlan.vue.d.ts +21 -0
- package/dist/packages/components/location/SatPoiQuery.vue.d.ts +17 -0
- package/dist/packages/components/location/helpers.d.ts +34 -0
- package/dist/packages/components/location/index.d.ts +669 -0
- package/dist/packages/components/map-part/SatMapPart.vue.d.ts +253 -0
- package/dist/packages/components/map-part/SatMapPartMain.vue.d.ts +8 -0
- package/dist/packages/components/map-part/index.d.ts +253 -0
- package/dist/packages/components/measure/SatMeasure.vue.d.ts +246 -0
- package/dist/packages/components/measure/index.d.ts +246 -0
- package/dist/packages/components/menu/MenuDrawer.vue.d.ts +100 -0
- package/dist/packages/components/menu/SatMenu.vue.d.ts +100 -0
- package/dist/packages/components/menu/index.d.ts +100 -0
- package/dist/packages/components/menu/tree/SatMenuTree.vue.d.ts +100 -0
- package/dist/packages/components/menu/tree/index.d.ts +100 -0
- package/dist/packages/components/picture/SatPicture.vue.d.ts +246 -0
- package/dist/packages/components/picture/index.d.ts +246 -0
- package/dist/packages/components/plot/SatPlot.vue.d.ts +246 -0
- package/dist/packages/components/plot/index.d.ts +246 -0
- package/dist/packages/components/roam/SatRoam.vue.d.ts +246 -0
- package/dist/packages/components/roam/index.d.ts +246 -0
- package/dist/packages/components/source/SatSource.vue.d.ts +115 -0
- package/dist/packages/components/source/SatSourceMain.vue.d.ts +14 -0
- package/dist/packages/components/source/TerrainExaggerationSlider.vue.d.ts +14 -0
- package/dist/packages/components/source/index.d.ts +115 -0
- package/dist/packages/components/video-fusion/SatVideoFusion.vue.d.ts +246 -0
- package/dist/packages/components/video-fusion/index.d.ts +246 -0
- package/dist/packages/global.d.ts +22 -0
- package/dist/packages/hooks/ui/useElLoading.d.ts +1 -0
- package/dist/packages/store/modules/compState.d.ts +211 -0
- package/dist/packages/store/modules/partState.d.ts +15 -0
- package/dist/packages/utils/coordTrans.d.ts +43 -0
- package/dist/packages/utils/elValidator.d.ts +1 -0
- package/dist/packages/utils/map/satMap/index.d.ts +5 -2
- package/dist/packages/utils/types/index.d.ts +4 -1
- package/dist/sat-earth.es.js +15788 -9807
- package/dist/sat-earth.umd.js +51 -36
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -301,6 +301,17 @@ onMounted(() => {
|
|
|
301
301
|
>
|
|
302
302
|
<SatMenu>
|
|
303
303
|
<SatSource></SatSource>
|
|
304
|
+
<SatMapPart></SatMapPart>
|
|
305
|
+
<SatLocation></SatLocation>
|
|
306
|
+
<SatMeasure></SatMeasure>
|
|
307
|
+
<SatPlot></SatPlot>
|
|
308
|
+
<SatPicture></SatPicture>
|
|
309
|
+
<SatSpatialAnalysis></SatSpatialAnalysis>
|
|
310
|
+
<SatTerrainAnalysis></SatTerrainAnalysis>
|
|
311
|
+
<SatModelAnalysis></SatModelAnalysis>
|
|
312
|
+
<SatVideoFusion></SatVideoFusion>
|
|
313
|
+
<SatRoam></SatRoam>
|
|
314
|
+
<SatBallistic></SatBallistic>
|
|
304
315
|
<!-- 自定义菜单项 -->
|
|
305
316
|
<template #custom-enable>
|
|
306
317
|
<SatMenuTree
|
|
@@ -351,6 +362,53 @@ body {
|
|
|
351
362
|
</style>
|
|
352
363
|
|
|
353
364
|
```
|
|
365
|
+
## 菜单计划
|
|
366
|
+
- 1.数据源 (done)
|
|
367
|
+
- 2.地图部件 (done)
|
|
368
|
+
- 坐标信息
|
|
369
|
+
- 悬浮导航
|
|
370
|
+
- 时钟动画
|
|
371
|
+
- 鹰眼地图
|
|
372
|
+
- 3.工具栏
|
|
373
|
+
- 3.1.搜索定位(done)
|
|
374
|
+
- 地名检索
|
|
375
|
+
- 坐标定位
|
|
376
|
+
- 路径规划
|
|
377
|
+
- 3.2.量测
|
|
378
|
+
- 坐标测量
|
|
379
|
+
- 空间距离
|
|
380
|
+
- 水平面积
|
|
381
|
+
- 高度测量
|
|
382
|
+
- 三角测量
|
|
383
|
+
- 方位角测量
|
|
384
|
+
- 贴地距离
|
|
385
|
+
- 贴地面积
|
|
386
|
+
- 3.3.图上标绘
|
|
387
|
+
- 3.4.出图工具
|
|
388
|
+
- 一键出图
|
|
389
|
+
- 自定义出图
|
|
390
|
+
- 3.5.空间分析
|
|
391
|
+
- 剖面分析
|
|
392
|
+
- 方量分析
|
|
393
|
+
- 通视分析
|
|
394
|
+
- 可视域分析
|
|
395
|
+
- 限高分析
|
|
396
|
+
- 缓冲分析
|
|
397
|
+
- 剖面分析
|
|
398
|
+
- 3.6.地形分析
|
|
399
|
+
- 挖地分析
|
|
400
|
+
- 等高线分析
|
|
401
|
+
- 坡度坡向分析
|
|
402
|
+
- 淹没分析
|
|
403
|
+
- 3.7.模型分析
|
|
404
|
+
- 淹没分析
|
|
405
|
+
- 模型压平
|
|
406
|
+
- 模型裁剪
|
|
407
|
+
- 模型剖切
|
|
408
|
+
- 3.8.视频融合
|
|
409
|
+
- 4.模拟仿真
|
|
410
|
+
- 4.1.飞行漫游
|
|
411
|
+
- 4.2.曲率弹道
|
|
354
412
|
|
|
355
413
|
## 其他说明
|
|
356
414
|
这是我第一次搭建组件库,目前状态是有时间就会写点儿,平时还要工作,所以无法保证开发进度,当然有一部分原因其实是把这次搭建组件库作为一种学习方式。如果您有什么问题或者见解欢迎指正和讨论。微信号:`KaiboGeng`
|
|
@@ -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 SatModelAnalysis: 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 SatModelAnalysis;
|