sat-earth 3.1.9 → 3.1.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/dts/components/_private/TheImageEditor/src/TheImageEditor.vue.d.ts +7 -3
- package/dist/dts/components/analysis-spatial/SatSpatialAnalysis.vue.d.ts +17 -2
- package/dist/dts/components/analysis-spatial/SatSpatialAnalysisMain.vue.d.ts +16 -1
- package/dist/dts/components/analysis-spatial/index.d.ts +15 -3
- package/dist/dts/components/components.d.ts +102 -6
- package/dist/dts/components/globe/SatGlobe.vue.d.ts +2 -2
- package/dist/dts/components/globe/index.d.ts +3 -3
- package/dist/dts/components/picture/SatPicture.vue.d.ts +2 -0
- package/dist/dts/components/picture/index.d.ts +5 -0
- package/dist/dts/utils/types/index.d.ts +2 -1
- package/dist/sat-earth.mjs +2538 -2532
- package/dist/style.css +1 -1
- package/package.json +2 -1
|
@@ -26,8 +26,10 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
|
|
|
26
26
|
}) => void;
|
|
27
27
|
uploadFile: (uploadFile: UploadFile) => void;
|
|
28
28
|
uploadImageBase64: (base64: string) => void;
|
|
29
|
-
download: (autoDownload?: boolean) => Promise<string> | undefined;
|
|
30
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
29
|
+
download: (autoDownload?: boolean) => Promise<string | undefined> | undefined;
|
|
30
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
31
|
+
download: (base64?: string | undefined) => void;
|
|
32
|
+
}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
31
33
|
isIncludeDiv: {
|
|
32
34
|
type: BooleanConstructor;
|
|
33
35
|
default: () => boolean;
|
|
@@ -40,7 +42,9 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
|
|
|
40
42
|
type: StringConstructor;
|
|
41
43
|
default: () => string;
|
|
42
44
|
};
|
|
43
|
-
}>> & Readonly<{
|
|
45
|
+
}>> & Readonly<{
|
|
46
|
+
onDownload?: ((base64?: string | undefined) => any) | undefined;
|
|
47
|
+
}>, {
|
|
44
48
|
isIncludeDiv: boolean;
|
|
45
49
|
divChildFilter: (node: Element) => boolean;
|
|
46
50
|
fileName: string;
|
|
@@ -1,15 +1,30 @@
|
|
|
1
|
+
import { JSX } from 'vue/jsx-runtime';
|
|
2
|
+
|
|
1
3
|
declare function __VLS_template(): {
|
|
2
4
|
default?(_: {}): any;
|
|
3
5
|
};
|
|
4
|
-
declare const __VLS_component: import('vue').DefineComponent<
|
|
6
|
+
declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
7
|
+
slots?: Record<string, (...args: any[]) => JSX.Element | string | null>;
|
|
8
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
5
9
|
initHooks: () => void;
|
|
6
10
|
destroyHooks: () => void;
|
|
7
|
-
}, string, import('vue').PublicProps, Readonly<
|
|
11
|
+
}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
12
|
+
slots?: Record<string, (...args: any[]) => JSX.Element | string | null>;
|
|
13
|
+
}>>> & Readonly<{
|
|
8
14
|
onInitHooks?: (() => any) | undefined;
|
|
9
15
|
onDestroyHooks?: (() => any) | undefined;
|
|
10
16
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
11
17
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
12
18
|
export default _default;
|
|
19
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
20
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
21
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
22
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
23
|
+
} : {
|
|
24
|
+
type: import('vue').PropType<T[K]>;
|
|
25
|
+
required: true;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
13
28
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
14
29
|
new (): {
|
|
15
30
|
$slots: S;
|
|
@@ -1,2 +1,17 @@
|
|
|
1
|
-
|
|
1
|
+
import { JSX } from 'vue/jsx-runtime';
|
|
2
|
+
|
|
3
|
+
declare const _default: import('vue').DefineComponent<globalThis.ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
4
|
+
slots?: Record<string, (...args: any[]) => JSX.Element | string | null>;
|
|
5
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
6
|
+
slots?: Record<string, (...args: any[]) => JSX.Element | string | null>;
|
|
7
|
+
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2
8
|
export default _default;
|
|
9
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
10
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
11
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
12
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
13
|
+
} : {
|
|
14
|
+
type: import('vue').PropType<T[K]>;
|
|
15
|
+
required: true;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
import { default as SatSpatialAnalysisSFC } from './SatSpatialAnalysis.vue';
|
|
2
2
|
|
|
3
3
|
declare const SatSpatialAnalysis: import('../../utils/installer').SFCWithInstall<{
|
|
4
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<
|
|
4
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
|
|
5
|
+
slots: {
|
|
6
|
+
type: globalThis.PropType<Record<string, (...args: any[]) => import("vue/jsx-runtime").JSX.Element | string | null>>;
|
|
7
|
+
};
|
|
8
|
+
}>> & Readonly<{
|
|
5
9
|
onInitHooks?: (() => any) | undefined;
|
|
6
10
|
onDestroyHooks?: (() => any) | undefined;
|
|
7
11
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
@@ -14,14 +18,22 @@ declare const SatSpatialAnalysis: import('../../utils/installer').SFCWithInstall
|
|
|
14
18
|
C: {};
|
|
15
19
|
M: {};
|
|
16
20
|
Defaults: {};
|
|
17
|
-
}, Readonly<
|
|
21
|
+
}, Readonly<globalThis.ExtractPropTypes<{
|
|
22
|
+
slots: {
|
|
23
|
+
type: globalThis.PropType<Record<string, (...args: any[]) => import("vue/jsx-runtime").JSX.Element | string | null>>;
|
|
24
|
+
};
|
|
25
|
+
}>> & Readonly<{
|
|
18
26
|
onInitHooks?: (() => any) | undefined;
|
|
19
27
|
onDestroyHooks?: (() => any) | undefined;
|
|
20
28
|
}>, {}, {}, {}, {}, {}>;
|
|
21
29
|
__isFragment?: never;
|
|
22
30
|
__isTeleport?: never;
|
|
23
31
|
__isSuspense?: never;
|
|
24
|
-
} & import('vue').ComponentOptionsBase<Readonly<
|
|
32
|
+
} & import('vue').ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
|
|
33
|
+
slots: {
|
|
34
|
+
type: globalThis.PropType<Record<string, (...args: any[]) => import("vue/jsx-runtime").JSX.Element | string | null>>;
|
|
35
|
+
};
|
|
36
|
+
}>> & Readonly<{
|
|
25
37
|
onInitHooks?: (() => any) | undefined;
|
|
26
38
|
onDestroyHooks?: (() => any) | undefined;
|
|
27
39
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
@@ -17,7 +17,7 @@ export declare const components: (({
|
|
|
17
17
|
default: () => import('../main').SatMapOptions;
|
|
18
18
|
};
|
|
19
19
|
getViewer: {
|
|
20
|
-
type: globalThis.PropType<() => any
|
|
20
|
+
type: globalThis.PropType<() => Promise<any>>;
|
|
21
21
|
};
|
|
22
22
|
}>> & Readonly<{}>, {
|
|
23
23
|
getInstance: () => import('../main').SatMap | undefined;
|
|
@@ -51,7 +51,7 @@ export declare const components: (({
|
|
|
51
51
|
default: () => import('../main').SatMapOptions;
|
|
52
52
|
};
|
|
53
53
|
getViewer: {
|
|
54
|
-
type: globalThis.PropType<() => any
|
|
54
|
+
type: globalThis.PropType<() => Promise<any>>;
|
|
55
55
|
};
|
|
56
56
|
}>> & Readonly<{}>, {
|
|
57
57
|
getInstance: () => import('../main').SatMap | undefined;
|
|
@@ -82,7 +82,7 @@ export declare const components: (({
|
|
|
82
82
|
default: () => import('../main').SatMapOptions;
|
|
83
83
|
};
|
|
84
84
|
getViewer: {
|
|
85
|
-
type: globalThis.PropType<() => any
|
|
85
|
+
type: globalThis.PropType<() => Promise<any>>;
|
|
86
86
|
};
|
|
87
87
|
}>> & Readonly<{}>, {
|
|
88
88
|
getInstance: () => import('../main').SatMap | undefined;
|
|
@@ -114,7 +114,7 @@ export declare const components: (({
|
|
|
114
114
|
default: () => import('../main').SatMapOptions;
|
|
115
115
|
};
|
|
116
116
|
getViewer: {
|
|
117
|
-
type: globalThis.PropType<() => any
|
|
117
|
+
type: globalThis.PropType<() => Promise<any>>;
|
|
118
118
|
};
|
|
119
119
|
}>> & Readonly<{}>, {
|
|
120
120
|
getInstance: () => import('../main').SatMap | undefined;
|
|
@@ -148,7 +148,7 @@ export declare const components: (({
|
|
|
148
148
|
default: () => import('../main').SatMapOptions;
|
|
149
149
|
};
|
|
150
150
|
getViewer: {
|
|
151
|
-
type: globalThis.PropType<() => any
|
|
151
|
+
type: globalThis.PropType<() => Promise<any>>;
|
|
152
152
|
};
|
|
153
153
|
}>> & Readonly<{}>, {
|
|
154
154
|
getInstance: () => import('../main').SatMap | undefined;
|
|
@@ -179,7 +179,7 @@ export declare const components: (({
|
|
|
179
179
|
default: () => import('../main').SatMapOptions;
|
|
180
180
|
};
|
|
181
181
|
getViewer: {
|
|
182
|
-
type: globalThis.PropType<() => any
|
|
182
|
+
type: globalThis.PropType<() => Promise<any>>;
|
|
183
183
|
};
|
|
184
184
|
}>> & Readonly<{}>, {
|
|
185
185
|
getInstance: () => import('../main').SatMap | undefined;
|
|
@@ -941,6 +941,7 @@ export declare const components: (({
|
|
|
941
941
|
default: (node: Element) => true;
|
|
942
942
|
};
|
|
943
943
|
}>> & Readonly<{
|
|
944
|
+
onDownload?: ((value?: string | undefined) => any) | undefined;
|
|
944
945
|
onInitHooks?: (() => any) | undefined;
|
|
945
946
|
onDestroyHooks?: (() => any) | undefined;
|
|
946
947
|
}>, {
|
|
@@ -948,6 +949,7 @@ export declare const components: (({
|
|
|
948
949
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
949
950
|
initHooks: () => void;
|
|
950
951
|
destroyHooks: () => void;
|
|
952
|
+
download: (value?: string | undefined) => void;
|
|
951
953
|
}, import('vue').PublicProps, {
|
|
952
954
|
isIncludeDiv: boolean;
|
|
953
955
|
divChildFilter: (node: Element) => boolean;
|
|
@@ -968,6 +970,7 @@ export declare const components: (({
|
|
|
968
970
|
default: (node: Element) => true;
|
|
969
971
|
};
|
|
970
972
|
}>> & Readonly<{
|
|
973
|
+
onDownload?: ((value?: string | undefined) => any) | undefined;
|
|
971
974
|
onInitHooks?: (() => any) | undefined;
|
|
972
975
|
onDestroyHooks?: (() => any) | undefined;
|
|
973
976
|
}>, {
|
|
@@ -989,6 +992,7 @@ export declare const components: (({
|
|
|
989
992
|
default: (node: Element) => true;
|
|
990
993
|
};
|
|
991
994
|
}>> & Readonly<{
|
|
995
|
+
onDownload?: ((value?: string | undefined) => any) | undefined;
|
|
992
996
|
onInitHooks?: (() => any) | undefined;
|
|
993
997
|
onDestroyHooks?: (() => any) | undefined;
|
|
994
998
|
}>, {
|
|
@@ -996,6 +1000,7 @@ export declare const components: (({
|
|
|
996
1000
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
997
1001
|
initHooks: () => void;
|
|
998
1002
|
destroyHooks: () => void;
|
|
1003
|
+
download: (value?: string | undefined) => void;
|
|
999
1004
|
}, string, {
|
|
1000
1005
|
isIncludeDiv: boolean;
|
|
1001
1006
|
divChildFilter: (node: Element) => boolean;
|
|
@@ -1014,6 +1019,7 @@ export declare const components: (({
|
|
|
1014
1019
|
default: (node: Element) => true;
|
|
1015
1020
|
};
|
|
1016
1021
|
}>> & Readonly<{
|
|
1022
|
+
onDownload?: ((value?: string | undefined) => any) | undefined;
|
|
1017
1023
|
onInitHooks?: (() => any) | undefined;
|
|
1018
1024
|
onDestroyHooks?: (() => any) | undefined;
|
|
1019
1025
|
}>, {
|
|
@@ -1021,6 +1027,7 @@ export declare const components: (({
|
|
|
1021
1027
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1022
1028
|
initHooks: () => void;
|
|
1023
1029
|
destroyHooks: () => void;
|
|
1030
|
+
download: (value?: string | undefined) => void;
|
|
1024
1031
|
}, import('vue').PublicProps, {
|
|
1025
1032
|
isIncludeDiv: boolean;
|
|
1026
1033
|
divChildFilter: (node: Element) => boolean;
|
|
@@ -1041,6 +1048,7 @@ export declare const components: (({
|
|
|
1041
1048
|
default: (node: Element) => true;
|
|
1042
1049
|
};
|
|
1043
1050
|
}>> & Readonly<{
|
|
1051
|
+
onDownload?: ((value?: string | undefined) => any) | undefined;
|
|
1044
1052
|
onInitHooks?: (() => any) | undefined;
|
|
1045
1053
|
onDestroyHooks?: (() => any) | undefined;
|
|
1046
1054
|
}>, {
|
|
@@ -1062,6 +1070,7 @@ export declare const components: (({
|
|
|
1062
1070
|
default: (node: Element) => true;
|
|
1063
1071
|
};
|
|
1064
1072
|
}>> & Readonly<{
|
|
1073
|
+
onDownload?: ((value?: string | undefined) => any) | undefined;
|
|
1065
1074
|
onInitHooks?: (() => any) | undefined;
|
|
1066
1075
|
onDestroyHooks?: (() => any) | undefined;
|
|
1067
1076
|
}>, {
|
|
@@ -1069,6 +1078,7 @@ export declare const components: (({
|
|
|
1069
1078
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1070
1079
|
initHooks: () => void;
|
|
1071
1080
|
destroyHooks: () => void;
|
|
1081
|
+
download: (value?: string | undefined) => void;
|
|
1072
1082
|
}, string, {
|
|
1073
1083
|
isIncludeDiv: boolean;
|
|
1074
1084
|
divChildFilter: (node: Element) => boolean;
|
|
@@ -1268,6 +1278,92 @@ export declare const components: (({
|
|
|
1268
1278
|
$slots: {
|
|
1269
1279
|
default?(_: {}): any;
|
|
1270
1280
|
};
|
|
1281
|
+
}) & ((app: import('vue').App, ...options: any[]) => any) & Partial<import('vue').ObjectPlugin<any[]>>) | ({
|
|
1282
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
|
|
1283
|
+
slots: {
|
|
1284
|
+
type: globalThis.PropType<Record<string, (...args: any[]) => import("vue/jsx-runtime").JSX.Element | string | null>>;
|
|
1285
|
+
};
|
|
1286
|
+
}>> & Readonly<{
|
|
1287
|
+
onInitHooks?: (() => any) | undefined;
|
|
1288
|
+
onDestroyHooks?: (() => any) | undefined;
|
|
1289
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1290
|
+
initHooks: () => void;
|
|
1291
|
+
destroyHooks: () => void;
|
|
1292
|
+
}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
1293
|
+
P: {};
|
|
1294
|
+
B: {};
|
|
1295
|
+
D: {};
|
|
1296
|
+
C: {};
|
|
1297
|
+
M: {};
|
|
1298
|
+
Defaults: {};
|
|
1299
|
+
}, Readonly<globalThis.ExtractPropTypes<{
|
|
1300
|
+
slots: {
|
|
1301
|
+
type: globalThis.PropType<Record<string, (...args: any[]) => import("vue/jsx-runtime").JSX.Element | string | null>>;
|
|
1302
|
+
};
|
|
1303
|
+
}>> & Readonly<{
|
|
1304
|
+
onInitHooks?: (() => any) | undefined;
|
|
1305
|
+
onDestroyHooks?: (() => any) | undefined;
|
|
1306
|
+
}>, {}, {}, {}, {}, {}>;
|
|
1307
|
+
__isFragment?: never;
|
|
1308
|
+
__isTeleport?: never;
|
|
1309
|
+
__isSuspense?: never;
|
|
1310
|
+
} & import('vue').ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
|
|
1311
|
+
slots: {
|
|
1312
|
+
type: globalThis.PropType<Record<string, (...args: any[]) => import("vue/jsx-runtime").JSX.Element | string | null>>;
|
|
1313
|
+
};
|
|
1314
|
+
}>> & Readonly<{
|
|
1315
|
+
onInitHooks?: (() => any) | undefined;
|
|
1316
|
+
onDestroyHooks?: (() => any) | undefined;
|
|
1317
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1318
|
+
initHooks: () => void;
|
|
1319
|
+
destroyHooks: () => void;
|
|
1320
|
+
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
1321
|
+
$slots: {
|
|
1322
|
+
default?(_: {}): any;
|
|
1323
|
+
};
|
|
1324
|
+
}) & import('vue').ObjectPlugin<any[]>) | ({
|
|
1325
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
|
|
1326
|
+
slots: {
|
|
1327
|
+
type: globalThis.PropType<Record<string, (...args: any[]) => import("vue/jsx-runtime").JSX.Element | string | null>>;
|
|
1328
|
+
};
|
|
1329
|
+
}>> & Readonly<{
|
|
1330
|
+
onInitHooks?: (() => any) | undefined;
|
|
1331
|
+
onDestroyHooks?: (() => any) | undefined;
|
|
1332
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1333
|
+
initHooks: () => void;
|
|
1334
|
+
destroyHooks: () => void;
|
|
1335
|
+
}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
1336
|
+
P: {};
|
|
1337
|
+
B: {};
|
|
1338
|
+
D: {};
|
|
1339
|
+
C: {};
|
|
1340
|
+
M: {};
|
|
1341
|
+
Defaults: {};
|
|
1342
|
+
}, Readonly<globalThis.ExtractPropTypes<{
|
|
1343
|
+
slots: {
|
|
1344
|
+
type: globalThis.PropType<Record<string, (...args: any[]) => import("vue/jsx-runtime").JSX.Element | string | null>>;
|
|
1345
|
+
};
|
|
1346
|
+
}>> & Readonly<{
|
|
1347
|
+
onInitHooks?: (() => any) | undefined;
|
|
1348
|
+
onDestroyHooks?: (() => any) | undefined;
|
|
1349
|
+
}>, {}, {}, {}, {}, {}>;
|
|
1350
|
+
__isFragment?: never;
|
|
1351
|
+
__isTeleport?: never;
|
|
1352
|
+
__isSuspense?: never;
|
|
1353
|
+
} & import('vue').ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
|
|
1354
|
+
slots: {
|
|
1355
|
+
type: globalThis.PropType<Record<string, (...args: any[]) => import("vue/jsx-runtime").JSX.Element | string | null>>;
|
|
1356
|
+
};
|
|
1357
|
+
}>> & Readonly<{
|
|
1358
|
+
onInitHooks?: (() => any) | undefined;
|
|
1359
|
+
onDestroyHooks?: (() => any) | undefined;
|
|
1360
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1361
|
+
initHooks: () => void;
|
|
1362
|
+
destroyHooks: () => void;
|
|
1363
|
+
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
1364
|
+
$slots: {
|
|
1365
|
+
default?(_: {}): any;
|
|
1366
|
+
};
|
|
1271
1367
|
}) & ((app: import('vue').App, ...options: any[]) => any) & Partial<import('vue').ObjectPlugin<any[]>>) | ({
|
|
1272
1368
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
1273
1369
|
P: {};
|
|
@@ -7,7 +7,7 @@ declare function __VLS_template(): {
|
|
|
7
7
|
declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
8
8
|
eleId?: string;
|
|
9
9
|
satMapOptions?: SatMapOptions;
|
|
10
|
-
getViewer?: () => any
|
|
10
|
+
getViewer?: () => Promise<any>;
|
|
11
11
|
offsetTop?: number;
|
|
12
12
|
offsetLeft?: number;
|
|
13
13
|
}>, {
|
|
@@ -20,7 +20,7 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
|
|
|
20
20
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
21
21
|
eleId?: string;
|
|
22
22
|
satMapOptions?: SatMapOptions;
|
|
23
|
-
getViewer?: () => any
|
|
23
|
+
getViewer?: () => Promise<any>;
|
|
24
24
|
offsetTop?: number;
|
|
25
25
|
offsetLeft?: number;
|
|
26
26
|
}>, {
|
|
@@ -20,7 +20,7 @@ declare const SatGlobe: import('../../utils/installer').SFCWithInstall<{
|
|
|
20
20
|
default: () => import('../../main').SatMapOptions;
|
|
21
21
|
};
|
|
22
22
|
getViewer: {
|
|
23
|
-
type: globalThis.PropType<() => any
|
|
23
|
+
type: globalThis.PropType<() => Promise<any>>;
|
|
24
24
|
};
|
|
25
25
|
}>> & Readonly<{}>, {
|
|
26
26
|
getInstance: () => SatMap | undefined;
|
|
@@ -54,7 +54,7 @@ declare const SatGlobe: import('../../utils/installer').SFCWithInstall<{
|
|
|
54
54
|
default: () => import('../../main').SatMapOptions;
|
|
55
55
|
};
|
|
56
56
|
getViewer: {
|
|
57
|
-
type: globalThis.PropType<() => any
|
|
57
|
+
type: globalThis.PropType<() => Promise<any>>;
|
|
58
58
|
};
|
|
59
59
|
}>> & Readonly<{}>, {
|
|
60
60
|
getInstance: () => SatMap | undefined;
|
|
@@ -85,7 +85,7 @@ declare const SatGlobe: import('../../utils/installer').SFCWithInstall<{
|
|
|
85
85
|
default: () => import('../../main').SatMapOptions;
|
|
86
86
|
};
|
|
87
87
|
getViewer: {
|
|
88
|
-
type: globalThis.PropType<() => any
|
|
88
|
+
type: globalThis.PropType<() => Promise<any>>;
|
|
89
89
|
};
|
|
90
90
|
}>> & Readonly<{}>, {
|
|
91
91
|
getInstance: () => SatMap | undefined;
|
|
@@ -18,6 +18,7 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
|
|
|
18
18
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
19
19
|
initHooks: () => void;
|
|
20
20
|
destroyHooks: () => void;
|
|
21
|
+
download: (value?: string | undefined) => void;
|
|
21
22
|
}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
22
23
|
isIncludeDiv: {
|
|
23
24
|
type: BooleanConstructor;
|
|
@@ -28,6 +29,7 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
|
|
|
28
29
|
default: (node: Element) => true;
|
|
29
30
|
};
|
|
30
31
|
}>> & Readonly<{
|
|
32
|
+
onDownload?: ((value?: string | undefined) => any) | undefined;
|
|
31
33
|
onInitHooks?: (() => any) | undefined;
|
|
32
34
|
onDestroyHooks?: (() => any) | undefined;
|
|
33
35
|
}>, {
|
|
@@ -13,6 +13,7 @@ declare const SatPicture: import('../../utils/installer').SFCWithInstall<{
|
|
|
13
13
|
default: (node: Element) => true;
|
|
14
14
|
};
|
|
15
15
|
}>> & Readonly<{
|
|
16
|
+
onDownload?: ((value?: string | undefined) => any) | undefined;
|
|
16
17
|
onInitHooks?: (() => any) | undefined;
|
|
17
18
|
onDestroyHooks?: (() => any) | undefined;
|
|
18
19
|
}>, {
|
|
@@ -20,6 +21,7 @@ declare const SatPicture: import('../../utils/installer').SFCWithInstall<{
|
|
|
20
21
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
21
22
|
initHooks: () => void;
|
|
22
23
|
destroyHooks: () => void;
|
|
24
|
+
download: (value?: string | undefined) => void;
|
|
23
25
|
}, import('vue').PublicProps, {
|
|
24
26
|
isIncludeDiv: boolean;
|
|
25
27
|
divChildFilter: (node: Element) => boolean;
|
|
@@ -40,6 +42,7 @@ declare const SatPicture: import('../../utils/installer').SFCWithInstall<{
|
|
|
40
42
|
default: (node: Element) => true;
|
|
41
43
|
};
|
|
42
44
|
}>> & Readonly<{
|
|
45
|
+
onDownload?: ((value?: string | undefined) => any) | undefined;
|
|
43
46
|
onInitHooks?: (() => any) | undefined;
|
|
44
47
|
onDestroyHooks?: (() => any) | undefined;
|
|
45
48
|
}>, {
|
|
@@ -61,6 +64,7 @@ declare const SatPicture: import('../../utils/installer').SFCWithInstall<{
|
|
|
61
64
|
default: (node: Element) => true;
|
|
62
65
|
};
|
|
63
66
|
}>> & Readonly<{
|
|
67
|
+
onDownload?: ((value?: string | undefined) => any) | undefined;
|
|
64
68
|
onInitHooks?: (() => any) | undefined;
|
|
65
69
|
onDestroyHooks?: (() => any) | undefined;
|
|
66
70
|
}>, {
|
|
@@ -68,6 +72,7 @@ declare const SatPicture: import('../../utils/installer').SFCWithInstall<{
|
|
|
68
72
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
69
73
|
initHooks: () => void;
|
|
70
74
|
destroyHooks: () => void;
|
|
75
|
+
download: (value?: string | undefined) => void;
|
|
71
76
|
}, string, {
|
|
72
77
|
isIncludeDiv: boolean;
|
|
73
78
|
divChildFilter: (node: Element) => boolean;
|
|
@@ -57,7 +57,7 @@ export type MarsMapOptions = {
|
|
|
57
57
|
export type SatMapOptions = {
|
|
58
58
|
map3d?: {
|
|
59
59
|
scene?: Mars3dMap.sceneOptions;
|
|
60
|
-
terrain?: Mars3dMap.terrainOptions & {
|
|
60
|
+
terrain?: Omit<Mars3dMap.terrainOptions, 'type'> & {
|
|
61
61
|
type?: string;
|
|
62
62
|
};
|
|
63
63
|
method?: Mars3dMap.methodOptions;
|
|
@@ -71,6 +71,7 @@ export type SatMapOptions = {
|
|
|
71
71
|
list?: SatLayer[];
|
|
72
72
|
};
|
|
73
73
|
custom?: SatMapCustomOptions;
|
|
74
|
+
[x: string]: any;
|
|
74
75
|
};
|
|
75
76
|
};
|
|
76
77
|
export type SatMapControl = Mars3dMap.controlOptions & {
|