ym-giswidget-2d 1.0.73 → 1.0.74
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 +33 -33
- package/assets/font/iconfont.css +39 -39
- package/assets/font/iconfont.json +51 -51
- package/components/distance-measurement/DistanceMeasurement.vue.d.ts +168 -1
- package/components/distance-measurement/DistanceMeasurement.vue.js +163 -7
- package/components/distance-measurement/DistanceMeasurement.vue2.js +4 -0
- package/components/distance-measurement/index.d.ts +177 -1
- package/components/distance-measurement/index.js +2 -2
- package/components/horizontally-top-toolbar/HorizontallyTopToolbar.vue2.js +1 -1
- package/package.json +2 -2
- package/panel/index.css +15 -15
package/README.md
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
# olComponents
|
|
2
|
-
|
|
3
|
-
This template should help get you started developing with Vue 3 in Vite.
|
|
4
|
-
|
|
5
|
-
## Recommended IDE Setup
|
|
6
|
-
|
|
7
|
-
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur).
|
|
8
|
-
|
|
9
|
-
## Type Support for `.vue` Imports in TS
|
|
10
|
-
|
|
11
|
-
TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types.
|
|
12
|
-
|
|
13
|
-
## Customize configuration
|
|
14
|
-
|
|
15
|
-
See [Vite Configuration Reference](https://vitejs.dev/config/).
|
|
16
|
-
|
|
17
|
-
## Project Setup
|
|
18
|
-
|
|
19
|
-
```sh
|
|
20
|
-
pnpm install
|
|
21
|
-
```
|
|
22
|
-
|
|
23
|
-
### Compile and Hot-Reload for Development
|
|
24
|
-
|
|
25
|
-
```sh
|
|
26
|
-
pnpm dev
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
### Type-Check, Compile and Minify for Production
|
|
30
|
-
|
|
31
|
-
```sh
|
|
32
|
-
pnpm build
|
|
33
|
-
```
|
|
1
|
+
# olComponents
|
|
2
|
+
|
|
3
|
+
This template should help get you started developing with Vue 3 in Vite.
|
|
4
|
+
|
|
5
|
+
## Recommended IDE Setup
|
|
6
|
+
|
|
7
|
+
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur).
|
|
8
|
+
|
|
9
|
+
## Type Support for `.vue` Imports in TS
|
|
10
|
+
|
|
11
|
+
TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types.
|
|
12
|
+
|
|
13
|
+
## Customize configuration
|
|
14
|
+
|
|
15
|
+
See [Vite Configuration Reference](https://vitejs.dev/config/).
|
|
16
|
+
|
|
17
|
+
## Project Setup
|
|
18
|
+
|
|
19
|
+
```sh
|
|
20
|
+
pnpm install
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
### Compile and Hot-Reload for Development
|
|
24
|
+
|
|
25
|
+
```sh
|
|
26
|
+
pnpm dev
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
### Type-Check, Compile and Minify for Production
|
|
30
|
+
|
|
31
|
+
```sh
|
|
32
|
+
pnpm build
|
|
33
|
+
```
|
package/assets/font/iconfont.css
CHANGED
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
@font-face {
|
|
2
|
-
font-family: "iconfont"; /* Project id 4810358 */
|
|
3
|
-
src: url('iconfont.woff2?t=1736821977689') format('woff2'),
|
|
4
|
-
url('iconfont.woff?t=1736821977689') format('woff'),
|
|
5
|
-
url('iconfont.ttf?t=1736821977689') format('truetype');
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.iconfont {
|
|
9
|
-
font-family: "iconfont" !important;
|
|
10
|
-
font-size: 16px;
|
|
11
|
-
font-style: normal;
|
|
12
|
-
-webkit-font-smoothing: antialiased;
|
|
13
|
-
-moz-osx-font-smoothing: grayscale;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.icon-undock:before {
|
|
17
|
-
content: "\e718";
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.icon-dock:before {
|
|
21
|
-
content: "\e601";
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.icon-minimize:before {
|
|
25
|
-
content: "\e646";
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.icon-restore:before {
|
|
29
|
-
content: "\e600";
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.icon-close:before {
|
|
33
|
-
content: "\e70f";
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.icon-maximize:before {
|
|
37
|
-
content: "\e651";
|
|
38
|
-
}
|
|
39
|
-
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: "iconfont"; /* Project id 4810358 */
|
|
3
|
+
src: url('iconfont.woff2?t=1736821977689') format('woff2'),
|
|
4
|
+
url('iconfont.woff?t=1736821977689') format('woff'),
|
|
5
|
+
url('iconfont.ttf?t=1736821977689') format('truetype');
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.iconfont {
|
|
9
|
+
font-family: "iconfont" !important;
|
|
10
|
+
font-size: 16px;
|
|
11
|
+
font-style: normal;
|
|
12
|
+
-webkit-font-smoothing: antialiased;
|
|
13
|
+
-moz-osx-font-smoothing: grayscale;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.icon-undock:before {
|
|
17
|
+
content: "\e718";
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.icon-dock:before {
|
|
21
|
+
content: "\e601";
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.icon-minimize:before {
|
|
25
|
+
content: "\e646";
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.icon-restore:before {
|
|
29
|
+
content: "\e600";
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.icon-close:before {
|
|
33
|
+
content: "\e70f";
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.icon-maximize:before {
|
|
37
|
+
content: "\e651";
|
|
38
|
+
}
|
|
39
|
+
|
|
@@ -1,51 +1,51 @@
|
|
|
1
|
-
{
|
|
2
|
-
"id": "4810358",
|
|
3
|
-
"name": "print-map",
|
|
4
|
-
"font_family": "iconfont",
|
|
5
|
-
"css_prefix_text": "icon-",
|
|
6
|
-
"description": "",
|
|
7
|
-
"glyphs": [
|
|
8
|
-
{
|
|
9
|
-
"icon_id": "21967058",
|
|
10
|
-
"name": "未停靠",
|
|
11
|
-
"font_class": "undock",
|
|
12
|
-
"unicode": "e718",
|
|
13
|
-
"unicode_decimal": 59160
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
"icon_id": "39867073",
|
|
17
|
-
"name": "停靠",
|
|
18
|
-
"font_class": "dock",
|
|
19
|
-
"unicode": "e601",
|
|
20
|
-
"unicode_decimal": 58881
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
"icon_id": "659177",
|
|
24
|
-
"name": "最小化",
|
|
25
|
-
"font_class": "minimize",
|
|
26
|
-
"unicode": "e646",
|
|
27
|
-
"unicode_decimal": 58950
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
"icon_id": "4485682",
|
|
31
|
-
"name": "还原窗体",
|
|
32
|
-
"font_class": "restore",
|
|
33
|
-
"unicode": "e600",
|
|
34
|
-
"unicode_decimal": 58880
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
"icon_id": "6705520",
|
|
38
|
-
"name": "关闭",
|
|
39
|
-
"font_class": "close",
|
|
40
|
-
"unicode": "e70f",
|
|
41
|
-
"unicode_decimal": 59151
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
"icon_id": "11490920",
|
|
45
|
-
"name": "最大化",
|
|
46
|
-
"font_class": "maximize",
|
|
47
|
-
"unicode": "e651",
|
|
48
|
-
"unicode_decimal": 58961
|
|
49
|
-
}
|
|
50
|
-
]
|
|
51
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"id": "4810358",
|
|
3
|
+
"name": "print-map",
|
|
4
|
+
"font_family": "iconfont",
|
|
5
|
+
"css_prefix_text": "icon-",
|
|
6
|
+
"description": "",
|
|
7
|
+
"glyphs": [
|
|
8
|
+
{
|
|
9
|
+
"icon_id": "21967058",
|
|
10
|
+
"name": "未停靠",
|
|
11
|
+
"font_class": "undock",
|
|
12
|
+
"unicode": "e718",
|
|
13
|
+
"unicode_decimal": 59160
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"icon_id": "39867073",
|
|
17
|
+
"name": "停靠",
|
|
18
|
+
"font_class": "dock",
|
|
19
|
+
"unicode": "e601",
|
|
20
|
+
"unicode_decimal": 58881
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"icon_id": "659177",
|
|
24
|
+
"name": "最小化",
|
|
25
|
+
"font_class": "minimize",
|
|
26
|
+
"unicode": "e646",
|
|
27
|
+
"unicode_decimal": 58950
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"icon_id": "4485682",
|
|
31
|
+
"name": "还原窗体",
|
|
32
|
+
"font_class": "restore",
|
|
33
|
+
"unicode": "e600",
|
|
34
|
+
"unicode_decimal": 58880
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"icon_id": "6705520",
|
|
38
|
+
"name": "关闭",
|
|
39
|
+
"font_class": "close",
|
|
40
|
+
"unicode": "e70f",
|
|
41
|
+
"unicode_decimal": 59151
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"icon_id": "11490920",
|
|
45
|
+
"name": "最大化",
|
|
46
|
+
"font_class": "maximize",
|
|
47
|
+
"unicode": "e651",
|
|
48
|
+
"unicode_decimal": 58961
|
|
49
|
+
}
|
|
50
|
+
]
|
|
51
|
+
}
|
|
@@ -1,2 +1,169 @@
|
|
|
1
|
-
|
|
1
|
+
import { default as OLMap } from 'ym-gis-2d/mapView/Map';
|
|
2
|
+
import { default as IFont } from 'ym-gis-2d/entity/IFont';
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
map: OLMap;
|
|
5
|
+
color?: Array<number> | string;
|
|
6
|
+
opacity?: number;
|
|
7
|
+
outlineColor?: Array<number> | string;
|
|
8
|
+
outlineOpacity?: number;
|
|
9
|
+
outlineWidth?: number;
|
|
10
|
+
font?: IFont;
|
|
11
|
+
unit?: "meters" | "kilometers";
|
|
12
|
+
precision?: number;
|
|
13
|
+
showLabel?: boolean;
|
|
14
|
+
spheroid?: boolean;
|
|
15
|
+
};
|
|
16
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
17
|
+
activeInteraction: (...args: any[]) => void;
|
|
18
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
19
|
+
onActiveInteraction?: ((...args: any[]) => any) | undefined;
|
|
20
|
+
}>, {
|
|
21
|
+
precision: number;
|
|
22
|
+
showLabel: boolean;
|
|
23
|
+
spheroid: boolean;
|
|
24
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
25
|
+
areaMeasureDom: ({
|
|
26
|
+
$: import('vue').ComponentInternalInstance;
|
|
27
|
+
$data: {};
|
|
28
|
+
$props: {
|
|
29
|
+
readonly title?: string | undefined;
|
|
30
|
+
readonly width?: number | undefined;
|
|
31
|
+
readonly height?: number | undefined;
|
|
32
|
+
readonly minWidth?: number | undefined;
|
|
33
|
+
readonly minHeight?: number | undefined;
|
|
34
|
+
readonly resizable?: boolean | undefined;
|
|
35
|
+
readonly showClose?: boolean | undefined;
|
|
36
|
+
readonly showMinimize?: boolean | undefined;
|
|
37
|
+
readonly showMaximize?: boolean | undefined;
|
|
38
|
+
readonly showDock?: boolean | undefined;
|
|
39
|
+
readonly drag?: boolean | undefined;
|
|
40
|
+
readonly showOk?: boolean | undefined;
|
|
41
|
+
readonly showCancel?: boolean | undefined;
|
|
42
|
+
readonly okText?: string | undefined;
|
|
43
|
+
readonly cancelText?: string | undefined;
|
|
44
|
+
readonly onClose?: ((...args: any[]) => any) | undefined;
|
|
45
|
+
readonly onResize?: ((...args: any[]) => any) | undefined;
|
|
46
|
+
readonly onMove?: ((...args: any[]) => any) | undefined;
|
|
47
|
+
readonly onOk?: ((...args: any[]) => any) | undefined;
|
|
48
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
49
|
+
$attrs: {
|
|
50
|
+
[x: string]: unknown;
|
|
51
|
+
};
|
|
52
|
+
$refs: {
|
|
53
|
+
[x: string]: unknown;
|
|
54
|
+
} & {
|
|
55
|
+
panelRef: HTMLDivElement;
|
|
56
|
+
};
|
|
57
|
+
$slots: Readonly<{
|
|
58
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
59
|
+
}>;
|
|
60
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
61
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
62
|
+
$host: Element | null;
|
|
63
|
+
$emit: ((event: "close", ...args: any[]) => void) & ((event: "resize", ...args: any[]) => void) & ((event: "move", ...args: any[]) => void) & ((event: "ok", ...args: any[]) => void);
|
|
64
|
+
$el: HTMLDivElement;
|
|
65
|
+
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
66
|
+
title?: string;
|
|
67
|
+
width?: number;
|
|
68
|
+
height?: number;
|
|
69
|
+
minWidth?: number;
|
|
70
|
+
minHeight?: number;
|
|
71
|
+
resizable?: boolean;
|
|
72
|
+
showClose?: boolean;
|
|
73
|
+
showMinimize?: boolean;
|
|
74
|
+
showMaximize?: boolean;
|
|
75
|
+
showDock?: boolean;
|
|
76
|
+
drag?: boolean;
|
|
77
|
+
showOk?: boolean;
|
|
78
|
+
showCancel?: boolean;
|
|
79
|
+
okText?: string;
|
|
80
|
+
cancelText?: string;
|
|
81
|
+
}> & Readonly<{
|
|
82
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
83
|
+
onResize?: ((...args: any[]) => any) | undefined;
|
|
84
|
+
onMove?: ((...args: any[]) => any) | undefined;
|
|
85
|
+
onOk?: ((...args: any[]) => any) | undefined;
|
|
86
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
87
|
+
close: (...args: any[]) => void;
|
|
88
|
+
resize: (...args: any[]) => void;
|
|
89
|
+
move: (...args: any[]) => void;
|
|
90
|
+
ok: (...args: any[]) => void;
|
|
91
|
+
}, string, {
|
|
92
|
+
title: string;
|
|
93
|
+
showClose: boolean;
|
|
94
|
+
drag: boolean;
|
|
95
|
+
minWidth: number;
|
|
96
|
+
minHeight: number;
|
|
97
|
+
resizable: boolean;
|
|
98
|
+
showMinimize: boolean;
|
|
99
|
+
showMaximize: boolean;
|
|
100
|
+
showDock: boolean;
|
|
101
|
+
showOk: boolean;
|
|
102
|
+
showCancel: boolean;
|
|
103
|
+
okText: string;
|
|
104
|
+
cancelText: string;
|
|
105
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
106
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
107
|
+
created?: (() => void) | (() => void)[];
|
|
108
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
109
|
+
mounted?: (() => void) | (() => void)[];
|
|
110
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
111
|
+
updated?: (() => void) | (() => void)[];
|
|
112
|
+
activated?: (() => void) | (() => void)[];
|
|
113
|
+
deactivated?: (() => void) | (() => void)[];
|
|
114
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
115
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
116
|
+
destroyed?: (() => void) | (() => void)[];
|
|
117
|
+
unmounted?: (() => void) | (() => void)[];
|
|
118
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
119
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
120
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
121
|
+
};
|
|
122
|
+
$forceUpdate: () => void;
|
|
123
|
+
$nextTick: typeof import('vue').nextTick;
|
|
124
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
125
|
+
} & Readonly<{
|
|
126
|
+
title: string;
|
|
127
|
+
showClose: boolean;
|
|
128
|
+
drag: boolean;
|
|
129
|
+
minWidth: number;
|
|
130
|
+
minHeight: number;
|
|
131
|
+
resizable: boolean;
|
|
132
|
+
showMinimize: boolean;
|
|
133
|
+
showMaximize: boolean;
|
|
134
|
+
showDock: boolean;
|
|
135
|
+
showOk: boolean;
|
|
136
|
+
showCancel: boolean;
|
|
137
|
+
okText: string;
|
|
138
|
+
cancelText: string;
|
|
139
|
+
}> & Omit<Readonly<{
|
|
140
|
+
title?: string;
|
|
141
|
+
width?: number;
|
|
142
|
+
height?: number;
|
|
143
|
+
minWidth?: number;
|
|
144
|
+
minHeight?: number;
|
|
145
|
+
resizable?: boolean;
|
|
146
|
+
showClose?: boolean;
|
|
147
|
+
showMinimize?: boolean;
|
|
148
|
+
showMaximize?: boolean;
|
|
149
|
+
showDock?: boolean;
|
|
150
|
+
drag?: boolean;
|
|
151
|
+
showOk?: boolean;
|
|
152
|
+
showCancel?: boolean;
|
|
153
|
+
okText?: string;
|
|
154
|
+
cancelText?: string;
|
|
155
|
+
}> & Readonly<{
|
|
156
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
157
|
+
onResize?: ((...args: any[]) => any) | undefined;
|
|
158
|
+
onMove?: ((...args: any[]) => any) | undefined;
|
|
159
|
+
onOk?: ((...args: any[]) => any) | undefined;
|
|
160
|
+
}>, "title" | "showClose" | "drag" | "minWidth" | "minHeight" | "resizable" | "showMinimize" | "showMaximize" | "showDock" | "showOk" | "showCancel" | "okText" | "cancelText"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
161
|
+
$slots: {
|
|
162
|
+
header?(_: {}): any;
|
|
163
|
+
default?(_: {}): any;
|
|
164
|
+
footer?(_: {}): any;
|
|
165
|
+
};
|
|
166
|
+
}) | null;
|
|
167
|
+
formRef: unknown;
|
|
168
|
+
}, HTMLDivElement>;
|
|
2
169
|
export default _default;
|
|
@@ -1,9 +1,165 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { ElForm, ElFormItem, ElSelect, ElOption } from "element-plus/es";
|
|
2
|
+
import "element-plus/es/components/base/style/css";
|
|
3
|
+
import "element-plus/es/components/form/style/css";
|
|
4
|
+
import "element-plus/es/components/form-item/style/css";
|
|
5
|
+
import "element-plus/es/components/select/style/css";
|
|
6
|
+
import "element-plus/es/components/option/style/css";
|
|
7
|
+
import { defineComponent, reactive, computed, onMounted, toRaw, onUnmounted, withDirectives, createBlock, openBlock, withCtx, createVNode, unref, createCommentVNode, createElementBlock, Fragment, renderList, createElementVNode, toDisplayString, vShow } from "vue";
|
|
8
|
+
import DraggablePanel from "../../panel/DraggablePanel.vue.js";
|
|
9
|
+
import DistanceMeasure from "ym-gis-2d/interaction/DistanceMeasure";
|
|
10
|
+
import measureUnits from "ym-gis-2d/entity/measure/DistanceMeasureUnits";
|
|
11
|
+
const _hoisted_1 = { class: "el-current-value" };
|
|
12
|
+
const _hoisted_2 = { class: "el-current-unit" };
|
|
13
|
+
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
14
|
+
__name: "DistanceMeasurement",
|
|
15
|
+
props: {
|
|
16
|
+
map: {},
|
|
17
|
+
color: {},
|
|
18
|
+
opacity: {},
|
|
19
|
+
outlineColor: {},
|
|
20
|
+
outlineOpacity: {},
|
|
21
|
+
outlineWidth: {},
|
|
22
|
+
font: {},
|
|
23
|
+
unit: {},
|
|
24
|
+
precision: { default: 2 },
|
|
25
|
+
showLabel: { type: Boolean, default: true },
|
|
26
|
+
spheroid: { type: Boolean, default: false }
|
|
27
|
+
},
|
|
28
|
+
emits: ["activeInteraction"],
|
|
29
|
+
setup(__props, { emit: __emit }) {
|
|
30
|
+
const emit = __emit;
|
|
31
|
+
const props = __props;
|
|
32
|
+
let reactiveValue = reactive({
|
|
33
|
+
visible: true,
|
|
34
|
+
allLength: 0,
|
|
35
|
+
hasLength: 0
|
|
36
|
+
});
|
|
37
|
+
reactiveValue.currentType = measureUnits[0];
|
|
38
|
+
const measureData = computed(() => {
|
|
39
|
+
var _a;
|
|
40
|
+
switch ((_a = reactiveValue.currentType) == null ? void 0 : _a.type) {
|
|
41
|
+
case "meters":
|
|
42
|
+
return {
|
|
43
|
+
perimeter: `${reactiveValue.allLength.toFixed(props.precision)}`
|
|
44
|
+
};
|
|
45
|
+
case "kilometers":
|
|
46
|
+
return {
|
|
47
|
+
perimeter: `${(reactiveValue.allLength * 1e-3).toFixed(props.precision)}`
|
|
48
|
+
};
|
|
49
|
+
default:
|
|
50
|
+
return {
|
|
51
|
+
perimeter: `${reactiveValue.allLength.toFixed(props.precision)} `
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
});
|
|
55
|
+
onMounted(() => {
|
|
56
|
+
let { map, ...options } = toRaw(props);
|
|
57
|
+
const distanceMeasure = new DistanceMeasure(options);
|
|
58
|
+
props.map.interactionManager.addInteraction("distanceMeasure", distanceMeasure);
|
|
59
|
+
distanceMeasure.on("measureMoving", (e) => {
|
|
60
|
+
reactiveValue.allLength = reactiveValue.hasLength + e.length;
|
|
61
|
+
});
|
|
62
|
+
distanceMeasure.on("measureEnd", (e) => {
|
|
63
|
+
reactiveValue.hasLength += e.length;
|
|
64
|
+
});
|
|
65
|
+
});
|
|
66
|
+
onUnmounted(() => {
|
|
67
|
+
reactiveValue.visible = false;
|
|
68
|
+
const distanceMeasure = props.map.interactionManager.getInteraction("distanceMeasure");
|
|
69
|
+
distanceMeasure.clearMeasure();
|
|
70
|
+
props.map.interactionManager.removeInteraction("distanceMeasure");
|
|
71
|
+
});
|
|
72
|
+
function handleClose() {
|
|
73
|
+
emit("activeInteraction", { success: false, message: "" });
|
|
74
|
+
}
|
|
75
|
+
function changeUnit() {
|
|
76
|
+
const distanceMeasure = props.map.interactionManager.getInteraction("distanceMeasure");
|
|
77
|
+
if (reactiveValue.currentType && distanceMeasure) {
|
|
78
|
+
distanceMeasure.setUnit(reactiveValue.currentType.type);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
return (_ctx, _cache) => {
|
|
82
|
+
const _component_el_option = ElOption;
|
|
83
|
+
const _component_el_select = ElSelect;
|
|
84
|
+
const _component_el_form_item = ElFormItem;
|
|
85
|
+
const _component_el_form = ElForm;
|
|
86
|
+
return withDirectives((openBlock(), createBlock(DraggablePanel, {
|
|
87
|
+
ref: "areaMeasureDom",
|
|
88
|
+
class: "el-current",
|
|
89
|
+
title: "面积测量",
|
|
90
|
+
drag: true,
|
|
91
|
+
width: 300,
|
|
92
|
+
height: 222,
|
|
93
|
+
showMaximize: false,
|
|
94
|
+
showOk: false,
|
|
95
|
+
"show-cancel": true,
|
|
96
|
+
"cancel-text": "关闭",
|
|
97
|
+
onClose: handleClose
|
|
98
|
+
}, {
|
|
99
|
+
default: withCtx(() => [
|
|
100
|
+
createVNode(_component_el_form, {
|
|
101
|
+
ref: "formRef",
|
|
102
|
+
model: unref(reactiveValue),
|
|
103
|
+
"label-width": "auto"
|
|
104
|
+
}, {
|
|
105
|
+
default: withCtx(() => [
|
|
106
|
+
createVNode(_component_el_form_item, {
|
|
107
|
+
label: "单位",
|
|
108
|
+
prop: "currentType",
|
|
109
|
+
rules: {
|
|
110
|
+
required: true,
|
|
111
|
+
message: "请选择单位",
|
|
112
|
+
trigger: "change"
|
|
113
|
+
}
|
|
114
|
+
}, {
|
|
115
|
+
default: withCtx(() => [
|
|
116
|
+
createVNode(_component_el_select, {
|
|
117
|
+
modelValue: unref(reactiveValue).currentType,
|
|
118
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => unref(reactiveValue).currentType = $event),
|
|
119
|
+
"value-key": "type",
|
|
120
|
+
class: "el-current",
|
|
121
|
+
"popper-class": "el-current",
|
|
122
|
+
onChange: changeUnit
|
|
123
|
+
}, {
|
|
124
|
+
default: withCtx(() => [
|
|
125
|
+
(openBlock(true), createElementBlock(Fragment, null, renderList(unref(measureUnits), (item) => {
|
|
126
|
+
return openBlock(), createBlock(_component_el_option, {
|
|
127
|
+
key: item.type,
|
|
128
|
+
label: item.label,
|
|
129
|
+
value: item
|
|
130
|
+
}, null, 8, ["label", "value"]);
|
|
131
|
+
}), 128))
|
|
132
|
+
]),
|
|
133
|
+
_: 1
|
|
134
|
+
}, 8, ["modelValue"])
|
|
135
|
+
]),
|
|
136
|
+
_: 1
|
|
137
|
+
}),
|
|
138
|
+
unref(reactiveValue).allLength > 0 ? (openBlock(), createBlock(_component_el_form_item, {
|
|
139
|
+
key: 0,
|
|
140
|
+
label: "总长度",
|
|
141
|
+
prop: "allLength"
|
|
142
|
+
}, {
|
|
143
|
+
default: withCtx(() => {
|
|
144
|
+
var _a;
|
|
145
|
+
return [
|
|
146
|
+
createElementVNode("span", _hoisted_1, toDisplayString(measureData.value.perimeter), 1),
|
|
147
|
+
createElementVNode("span", _hoisted_2, toDisplayString((_a = unref(reactiveValue).currentType) == null ? void 0 : _a.persimeterLabel), 1)
|
|
148
|
+
];
|
|
149
|
+
}),
|
|
150
|
+
_: 1
|
|
151
|
+
})) : createCommentVNode("", true)
|
|
152
|
+
]),
|
|
153
|
+
_: 1
|
|
154
|
+
}, 8, ["model"])
|
|
155
|
+
]),
|
|
156
|
+
_: 1
|
|
157
|
+
}, 512)), [
|
|
158
|
+
[vShow, unref(reactiveValue).visible]
|
|
159
|
+
]);
|
|
160
|
+
};
|
|
161
|
+
}
|
|
162
|
+
});
|
|
7
163
|
export {
|
|
8
|
-
|
|
164
|
+
_sfc_main as default
|
|
9
165
|
};
|
|
@@ -1,2 +1,178 @@
|
|
|
1
|
-
export declare const DistanceMeasurement: import('../../utils').WithInstall<import('vue').DefineComponent<{
|
|
1
|
+
export declare const DistanceMeasurement: import('../../utils').WithInstall<import('vue').DefineComponent<{
|
|
2
|
+
map: import('ym-gis-2d/mapView/Map').default;
|
|
3
|
+
color?: Array<number> | string;
|
|
4
|
+
opacity?: number;
|
|
5
|
+
outlineColor?: Array<number> | string;
|
|
6
|
+
outlineOpacity?: number;
|
|
7
|
+
outlineWidth?: number;
|
|
8
|
+
font?: import('ym-gis-2d/entity/IFont').default;
|
|
9
|
+
unit?: "meters" | "kilometers";
|
|
10
|
+
precision?: number;
|
|
11
|
+
showLabel?: boolean;
|
|
12
|
+
spheroid?: boolean;
|
|
13
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
14
|
+
activeInteraction: (...args: any[]) => void;
|
|
15
|
+
}, string, import('vue').PublicProps, Readonly<{
|
|
16
|
+
map: import('ym-gis-2d/mapView/Map').default;
|
|
17
|
+
color?: Array<number> | string;
|
|
18
|
+
opacity?: number;
|
|
19
|
+
outlineColor?: Array<number> | string;
|
|
20
|
+
outlineOpacity?: number;
|
|
21
|
+
outlineWidth?: number;
|
|
22
|
+
font?: import('ym-gis-2d/entity/IFont').default;
|
|
23
|
+
unit?: "meters" | "kilometers";
|
|
24
|
+
precision?: number;
|
|
25
|
+
showLabel?: boolean;
|
|
26
|
+
spheroid?: boolean;
|
|
27
|
+
}> & Readonly<{
|
|
28
|
+
onActiveInteraction?: ((...args: any[]) => any) | undefined;
|
|
29
|
+
}>, {
|
|
30
|
+
precision: number;
|
|
31
|
+
showLabel: boolean;
|
|
32
|
+
spheroid: boolean;
|
|
33
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
34
|
+
areaMeasureDom: ({
|
|
35
|
+
$: import('vue').ComponentInternalInstance;
|
|
36
|
+
$data: {};
|
|
37
|
+
$props: {
|
|
38
|
+
readonly title?: string | undefined;
|
|
39
|
+
readonly width?: number | undefined;
|
|
40
|
+
readonly height?: number | undefined;
|
|
41
|
+
readonly minWidth?: number | undefined;
|
|
42
|
+
readonly minHeight?: number | undefined;
|
|
43
|
+
readonly resizable?: boolean | undefined;
|
|
44
|
+
readonly showClose?: boolean | undefined;
|
|
45
|
+
readonly showMinimize?: boolean | undefined;
|
|
46
|
+
readonly showMaximize?: boolean | undefined;
|
|
47
|
+
readonly showDock?: boolean | undefined;
|
|
48
|
+
readonly drag?: boolean | undefined;
|
|
49
|
+
readonly showOk?: boolean | undefined;
|
|
50
|
+
readonly showCancel?: boolean | undefined;
|
|
51
|
+
readonly okText?: string | undefined;
|
|
52
|
+
readonly cancelText?: string | undefined;
|
|
53
|
+
readonly onClose?: ((...args: any[]) => any) | undefined;
|
|
54
|
+
readonly onResize?: ((...args: any[]) => any) | undefined;
|
|
55
|
+
readonly onMove?: ((...args: any[]) => any) | undefined;
|
|
56
|
+
readonly onOk?: ((...args: any[]) => any) | undefined;
|
|
57
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
58
|
+
$attrs: {
|
|
59
|
+
[x: string]: unknown;
|
|
60
|
+
};
|
|
61
|
+
$refs: {
|
|
62
|
+
[x: string]: unknown;
|
|
63
|
+
} & {
|
|
64
|
+
panelRef: HTMLDivElement;
|
|
65
|
+
};
|
|
66
|
+
$slots: Readonly<{
|
|
67
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
68
|
+
}>;
|
|
69
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
70
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
71
|
+
$host: Element | null;
|
|
72
|
+
$emit: ((event: "close", ...args: any[]) => void) & ((event: "resize", ...args: any[]) => void) & ((event: "move", ...args: any[]) => void) & ((event: "ok", ...args: any[]) => void);
|
|
73
|
+
$el: HTMLDivElement;
|
|
74
|
+
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
75
|
+
title?: string;
|
|
76
|
+
width?: number;
|
|
77
|
+
height?: number;
|
|
78
|
+
minWidth?: number;
|
|
79
|
+
minHeight?: number;
|
|
80
|
+
resizable?: boolean;
|
|
81
|
+
showClose?: boolean;
|
|
82
|
+
showMinimize?: boolean;
|
|
83
|
+
showMaximize?: boolean;
|
|
84
|
+
showDock?: boolean;
|
|
85
|
+
drag?: boolean;
|
|
86
|
+
showOk?: boolean;
|
|
87
|
+
showCancel?: boolean;
|
|
88
|
+
okText?: string;
|
|
89
|
+
cancelText?: string;
|
|
90
|
+
}> & Readonly<{
|
|
91
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
92
|
+
onResize?: ((...args: any[]) => any) | undefined;
|
|
93
|
+
onMove?: ((...args: any[]) => any) | undefined;
|
|
94
|
+
onOk?: ((...args: any[]) => any) | undefined;
|
|
95
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
96
|
+
close: (...args: any[]) => void;
|
|
97
|
+
resize: (...args: any[]) => void;
|
|
98
|
+
move: (...args: any[]) => void;
|
|
99
|
+
ok: (...args: any[]) => void;
|
|
100
|
+
}, string, {
|
|
101
|
+
title: string;
|
|
102
|
+
showClose: boolean;
|
|
103
|
+
drag: boolean;
|
|
104
|
+
minWidth: number;
|
|
105
|
+
minHeight: number;
|
|
106
|
+
resizable: boolean;
|
|
107
|
+
showMinimize: boolean;
|
|
108
|
+
showMaximize: boolean;
|
|
109
|
+
showDock: boolean;
|
|
110
|
+
showOk: boolean;
|
|
111
|
+
showCancel: boolean;
|
|
112
|
+
okText: string;
|
|
113
|
+
cancelText: string;
|
|
114
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
115
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
116
|
+
created?: (() => void) | (() => void)[];
|
|
117
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
118
|
+
mounted?: (() => void) | (() => void)[];
|
|
119
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
120
|
+
updated?: (() => void) | (() => void)[];
|
|
121
|
+
activated?: (() => void) | (() => void)[];
|
|
122
|
+
deactivated?: (() => void) | (() => void)[];
|
|
123
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
124
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
125
|
+
destroyed?: (() => void) | (() => void)[];
|
|
126
|
+
unmounted?: (() => void) | (() => void)[];
|
|
127
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
128
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
129
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
130
|
+
};
|
|
131
|
+
$forceUpdate: () => void;
|
|
132
|
+
$nextTick: typeof import('vue').nextTick;
|
|
133
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
134
|
+
} & Readonly<{
|
|
135
|
+
title: string;
|
|
136
|
+
showClose: boolean;
|
|
137
|
+
drag: boolean;
|
|
138
|
+
minWidth: number;
|
|
139
|
+
minHeight: number;
|
|
140
|
+
resizable: boolean;
|
|
141
|
+
showMinimize: boolean;
|
|
142
|
+
showMaximize: boolean;
|
|
143
|
+
showDock: boolean;
|
|
144
|
+
showOk: boolean;
|
|
145
|
+
showCancel: boolean;
|
|
146
|
+
okText: string;
|
|
147
|
+
cancelText: string;
|
|
148
|
+
}> & Omit<Readonly<{
|
|
149
|
+
title?: string;
|
|
150
|
+
width?: number;
|
|
151
|
+
height?: number;
|
|
152
|
+
minWidth?: number;
|
|
153
|
+
minHeight?: number;
|
|
154
|
+
resizable?: boolean;
|
|
155
|
+
showClose?: boolean;
|
|
156
|
+
showMinimize?: boolean;
|
|
157
|
+
showMaximize?: boolean;
|
|
158
|
+
showDock?: boolean;
|
|
159
|
+
drag?: boolean;
|
|
160
|
+
showOk?: boolean;
|
|
161
|
+
showCancel?: boolean;
|
|
162
|
+
okText?: string;
|
|
163
|
+
cancelText?: string;
|
|
164
|
+
}> & Readonly<{
|
|
165
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
166
|
+
onResize?: ((...args: any[]) => any) | undefined;
|
|
167
|
+
onMove?: ((...args: any[]) => any) | undefined;
|
|
168
|
+
onOk?: ((...args: any[]) => any) | undefined;
|
|
169
|
+
}>, "title" | "showClose" | "drag" | "minWidth" | "minHeight" | "resizable" | "showMinimize" | "showMaximize" | "showDock" | "showOk" | "showCancel" | "okText" | "cancelText"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
170
|
+
$slots: {
|
|
171
|
+
header?(_: {}): any;
|
|
172
|
+
default?(_: {}): any;
|
|
173
|
+
footer?(_: {}): any;
|
|
174
|
+
};
|
|
175
|
+
}) | null;
|
|
176
|
+
formRef: unknown;
|
|
177
|
+
}, HTMLDivElement>>;
|
|
2
178
|
export default DistanceMeasurement;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { withInstall } from "../../utils/wthInstall.js";
|
|
2
|
-
import
|
|
3
|
-
const DistanceMeasurement = withInstall(
|
|
2
|
+
import _sfc_main from "./DistanceMeasurement.vue.js";
|
|
3
|
+
const DistanceMeasurement = withInstall(_sfc_main);
|
|
4
4
|
export {
|
|
5
5
|
DistanceMeasurement,
|
|
6
6
|
DistanceMeasurement as default
|
|
@@ -145,7 +145,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
145
145
|
},
|
|
146
146
|
emits: ["loaded"],
|
|
147
147
|
setup(__props, { emit: __emit }) {
|
|
148
|
-
const modules = /* @__PURE__ */ Object.assign({ "../address-search/AddressSearch.vue": () => import("../address-search/AddressSearch.vue.js"), "../address-search/index.ts": () => import("../address-search/index.js"), "../area-measurement/AreaMeasurement.vue": () => import("../area-measurement/AreaMeasurement.vue2.js"), "../area-measurement/index.ts": () => import("../area-measurement/index.js"), "../clear/Clear.vue": () => import("../clear/Clear.vue2.js"), "../clear/index.ts": () => import("../clear/index.js"), "../difference/Difference.vue": () => import("../difference/Difference.vue2.js"), "../difference/index.ts": () => import("../difference/index.js"), "../distance-measurement/DistanceMeasurement.vue": () => import("../distance-measurement/DistanceMeasurement.
|
|
148
|
+
const modules = /* @__PURE__ */ Object.assign({ "../address-search/AddressSearch.vue": () => import("../address-search/AddressSearch.vue.js"), "../address-search/index.ts": () => import("../address-search/index.js"), "../area-measurement/AreaMeasurement.vue": () => import("../area-measurement/AreaMeasurement.vue2.js"), "../area-measurement/index.ts": () => import("../area-measurement/index.js"), "../clear/Clear.vue": () => import("../clear/Clear.vue2.js"), "../clear/index.ts": () => import("../clear/index.js"), "../difference/Difference.vue": () => import("../difference/Difference.vue2.js"), "../difference/index.ts": () => import("../difference/index.js"), "../distance-measurement/DistanceMeasurement.vue": () => import("../distance-measurement/DistanceMeasurement.vue2.js"), "../distance-measurement/index.ts": () => import("../distance-measurement/index.js"), "../draw/Draw.vue": () => import("../draw/Draw.vue2.js"), "../draw/index.ts": () => import("../draw/index.js"), "../export/Export.vue": () => import("../export/Export.vue.js"), "../export/index.ts": () => import("../export/index.js"), "../heatmap/Heatmap.vue": () => import("../heatmap/Heatmap.vue.js"), "../heatmap/index.ts": () => import("../heatmap/index.js"), "./HorizontallyTopToolbar.vue": () => import("./HorizontallyTopToolbar.vue.js"), "./index.ts": () => import("./index.js"), "../identify/Identify.vue": () => import("../identify/Identify.vue2.js"), "../identify/index.ts": () => import("../identify/index.js"), "../import/Import.vue": () => import("../import/Import.vue2.js"), "../import/index.ts": () => import("../import/index.js"), "../layer-switcher/LayerSwitcher.vue": () => import("../layer-switcher/LayerSwitcher.vue.js"), "../layer-switcher/index.ts": () => import("../layer-switcher/index.js"), "../layer-tree/LayerTree.vue": () => import("../layer-tree/LayerTree.vue.js"), "../layer-tree/index.ts": () => import("../layer-tree/index.js"), "../legend/Legend.vue": () => import("../legend/Legend.vue.js"), "../legend/index.ts": () => import("../legend/index.js"), "../location/Location.vue": () => import("../location/Location.vue.js"), "../location/index.ts": () => import("../location/index.js"), "../map-view/MapView.vue": () => import("../map-view/MapView.vue2.js"), "../map-view/index.ts": () => import("../map-view/index.js"), "../modify/Modify.vue": () => import("../modify/Modify.vue2.js"), "../modify/index.ts": () => import("../modify/index.js"), "../mouse-position/MousePositon.vue": () => import("../mouse-position/MousePositon.vue.js"), "../mouse-position/index.ts": () => import("../mouse-position/index.js"), "../multi-screen-panel/PanelMultiScreen.vue": () => import("../multi-screen-panel/PanelMultiScreen.vue.js"), "../multi-screen-panel/index.ts": () => import("../multi-screen-panel/index.js"), "../multi-screen/MultiScreen.vue": () => import("../multi-screen/MultiScreen.vue.js"), "../multi-screen/index.ts": () => import("../multi-screen/index.js"), "../popup/Popup.vue": () => import("../popup/Popup.vue.js"), "../popup/index.ts": () => import("../popup/index.js"), "../scale-line/ScaleLine.vue": () => import("../scale-line/ScaleLine.vue.js"), "../scale-line/index.ts": () => import("../scale-line/index.js"), "../select/Select.vue": () => import("../select/Select.vue2.js"), "../select/index.ts": () => import("../select/index.js"), "../snap/Snap.vue": () => import("../snap/Snap.vue2.js"), "../snap/index.ts": () => import("../snap/index.js"), "../split/Split.vue": () => import("../split/Split.vue2.js"), "../split/index.ts": () => import("../split/index.js"), "../swipe-layer/SwipeLayer.vue": () => import("../swipe-layer/SwipeLayer.vue2.js"), "../swipe-layer/index.ts": () => import("../swipe-layer/index.js"), "../toc-card/TocCard.vue": () => import("../toc-card/TocCard.vue.js"), "../toc-card/index.ts": () => import("../toc-card/index.js") });
|
|
149
149
|
const emit = __emit;
|
|
150
150
|
const props = __props;
|
|
151
151
|
const reactiveValue = reactive({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ym-giswidget-2d",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.74",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "index.js",
|
|
@@ -10,6 +10,6 @@
|
|
|
10
10
|
"element-plus": "^2.9.0",
|
|
11
11
|
"jszip": "^3.10.1",
|
|
12
12
|
"ol": "^9.2.4",
|
|
13
|
-
"ym-gis-2d": "1.0.
|
|
13
|
+
"ym-gis-2d": "1.0.47"
|
|
14
14
|
}
|
|
15
15
|
}
|
package/panel/index.css
CHANGED
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
@font-face {
|
|
2
|
-
font-family: "iconfont"; /* Project id 4810358 */
|
|
3
|
-
src: url('data:font/woff2;base64,d09GMgABAAAAAAPkAAsAAAAACNQAAAOXAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGYACDVgqEHINRATYCJAMcCxAABCAFhGcHXxu2BxEVnPvIfh44xtoR60JS/t4jKOZhRY2k+xw839dJf+5DdyceKBnBK1k9NStoZa/hZGAlgzX0fxIgoG5rzhEKHzVZkrUjj/73zVMhvXyGMfA/l+N/753d83R9CwDm2Dioo/Q8oKNwb8si7OVpopyGeZdO6iC9/AwCBKlJc1TbU4ceRCeoGZNIYOBMgbxRJvjRQ/EUK6anUfAQnLF7DbIWC2qZugmsid8v36gtHiishl/SZVS7EaQzZAtrP+eDfknIQMB8BVhAA1VPZpdF/d456DRbFU2w7TeGDkAYD4XJSKZ9pms2li2cy5GhpOR5IUzU/YMHBoXGwSIgDqgPA9BHyDmQwTdjTJ3AjIKuPcxo6LpCCAeyMTMWusKQX91dLgBRIAZsABfhVF2yFo2wFpUwJmCsweSEDYTzx+dHlx+AYDDB+AdDsRWHRUK0xi45NCdGVOmY6r3ShVQwLLFJ3ibmx5087oxpxISCNtS/VzyXOA2n4QyRglT52QFEbayvSpzdPP8xYlSPkSN6jh7Ze9Tc6PLHj7vNT54MHvnoEcZ/+HDWbLW12hvqki0jpSNvdwRq/I5CqOa9ki15ZXpHyx2p3I6OtO+3bFGiuo56ux3CHTa51IzsjFszmIp0Mj6aan9TokfS3xekU8keiXRs2u/DlNhYmPDsaSadSp9+uvBZ4/jn/iaadPuvTev5C0aOCjmjxo4aaRo5prS+TZsF86lZM+lUalexYtvKtnIgSvorsbLqH4tvLG59vRNPZhEAubc7dSm67Pd+7QJoJA0536CXEDd9RLfKf9ysk7/Dd6izbV2RwbGm372QAeDD4YV9oZgnfZ06Rktfvm7ASFpjxcA1bb19KdvkUgMLgAKC7gC872BeXq/nzwe5W/AUGVDhkkSNR2kwZGW0hKiNDh7NMEgV2h0OkY8paMQEgPIsJRTiHERFlBOoiXMFDPkELQXJokOc/9Cy8mh73touvWdUghU8f+A1dcYzSMz2gvbVKG5KPZCjRwLyJKsWztghL7Ehvm0hYsAwtXCSHsOmIeiZAmpJnEhfpqlpe0miqR3sMaQIVAFPP8DTSMeE9FL+vAtkvTQUHgmPLIs82INcIhsBZ203qutJLonerIIQBjCY8i1wUtyoMbME9O2zAqSJhJuR7pVSl86M1Sb769ubPAQE8avdlGgxYsURVzxmdxXpehKkFq3vvN/yxzljFMKMqW4o4qJV3ybLYAAA') format('woff2'),
|
|
4
|
-
url('data:font/woff;base64,d09GRgABAAAAAAW4AAsAAAAACNQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAARAAAAGA8FUnoY21hcAAAAYgAAAB9AAAB1k7+hjNnbHlmAAACCAAAAZoAAAIcJRpmcmhlYWQAAAOkAAAALwAAADYqdj6waGhlYQAAA9QAAAAcAAAAJAfeA4hobXR4AAAD8AAAAA4AAAAcHAAAAGxvY2EAAAQAAAAAEAAAABABlgIqbWF4cAAABBAAAAAfAAAAIAEWADtuYW1lAAAEMAAAAUAAAAJnEKM8sHBvc3QAAAVwAAAASAAAAF/a9ea9eJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGFhYJzAwMrAwNTJdIaBgaEfQjO+ZjBi5ACKMrAyM2AFAWmuKQwHnjE8l2Bu+N/AwMB8hwFIMjCiKGICAGUXDHl4nO2RwQnDQAwER/blCMbEXxeROvLKx7+UkpfL1ZXhrE4mpIjomAMJsYJd4AKM4i4K2I4R9dbU+nxk6vPCU/3MlYHi5g/f2tLW4wDnt/uWaft2vlAfpFV1UbpW+dfc/9fZ1fAxiSTcErkmd5NIyrck9tuSRIptTbAPCuEd+gAAAHicfU+7TuNQFDwPYojAK1kmIGxhcWPZUVxQEAIVyCiGii+gogLRp2Qlr0JJjURoQgNfQLla/8AWW0KVgscHQMPjXjgmEtshnceMdDRnBioA70M+ZwVzMA8KElgEQFW35jGsWzVneqalllbWsLW00naWY1Q1NYfKcUMhoWqrqK1qnOvCdge269qUjsDbI6W6oLQYuLbJR5gXXHsoFMpDASTADFOT4sDsIqDQfCFNAVg8PfMlj8MYTMBU6cdRDkq3QqfFOxp4WwM+/O122Xp74imdUlcfUxfkVFoEsChVSrcIBEZ4PtLNx4B/SdYAGt/l5Jq8/ArJhd7z4gsvjj0qvDgXcCM/i98/Y8/E1Oc88qX0hh9F/mXk0akf6cY9/TENvPajfOTrveAr3oBJIY0qjldxtoqryFeZOTL9DPfNaYZ7eJiZHumO6eF+x5yYfgcPTC/DQ9Eg0bjlM/bBhRCgouqLKGbXUawHKBl+IP7PUsYImfVLc6spRdbn1v+CJAnIKqff3Eyokmw2ZetX2XSXBPr186ASJB+iQ326AAB4nGNgZGBgAGLnedMk4/ltvjJwszCAwOPVtZEI+n8DCwNzI5DLwcAEEgUAHdYKGgB4nGNgZGBgbvjfwBDDwgACQJKRARWwAwBHDQJweJxjYWBgYMGBAQHcAB0AAAAAAAAASgBoAHYAtADWAQ54nGNgZGBgYGfQZ2BlAAEmIOYCQgaG/2A+AwAOEQFSAHichZE9bsJAEIWfwZAElChKpDRpVikoEsn8lEipUKCnoAez5ke211ovSNQ5TY6QE+QI6Whzikh52EMDRbza2W/evpkdyQDusIeH8rvnLtnDJbOSK7jAo3CV+pOwT34WrqGJnnCd+qtwAy94E26yY8YOnn/FrIV3YQ+3+BCu4AafwlXqX8I++Vu4hgf8CNep/wo3MPGuhZtoeeHA6qnTczXbqVVo0sik7niO9WITT+2pPNE2X5lUdYPOURrpVNtjm3y76DkXqciaRA15q+PYqMyatQ5dsHQu67fbkehBaBIMYKExhWOcQ2GGHeMKIQxSREV0Z/mY7gU2iFlp/3VP6LbIqR9yhS4CdM5cI7rSwnk6TY4tX+tRdXQrbsuahDSUWs1JYrLiDzzcramE1AMsi6oMfbS5ohN/UMyQ/AHYk29XeJxjYGKAAC4G7ICdkYmRmZGFkZWRjZGdkYOBrTQvJT85mwVEcORm5mXmZlalshelFpfkF6WyJufkF6dy5CZWgIUZGACPyRBp') format('woff'),
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: "iconfont"; /* Project id 4810358 */
|
|
3
|
+
src: url('data:font/woff2;base64,d09GMgABAAAAAAPkAAsAAAAACNQAAAOXAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGYACDVgqEHINRATYCJAMcCxAABCAFhGcHXxu2BxEVnPvIfh44xtoR60JS/t4jKOZhRY2k+xw839dJf+5DdyceKBnBK1k9NStoZa/hZGAlgzX0fxIgoG5rzhEKHzVZkrUjj/73zVMhvXyGMfA/l+N/753d83R9CwDm2Dioo/Q8oKNwb8si7OVpopyGeZdO6iC9/AwCBKlJc1TbU4ceRCeoGZNIYOBMgbxRJvjRQ/EUK6anUfAQnLF7DbIWC2qZugmsid8v36gtHiishl/SZVS7EaQzZAtrP+eDfknIQMB8BVhAA1VPZpdF/d456DRbFU2w7TeGDkAYD4XJSKZ9pms2li2cy5GhpOR5IUzU/YMHBoXGwSIgDqgPA9BHyDmQwTdjTJ3AjIKuPcxo6LpCCAeyMTMWusKQX91dLgBRIAZsABfhVF2yFo2wFpUwJmCsweSEDYTzx+dHlx+AYDDB+AdDsRWHRUK0xi45NCdGVOmY6r3ShVQwLLFJ3ibmx5087oxpxISCNtS/VzyXOA2n4QyRglT52QFEbayvSpzdPP8xYlSPkSN6jh7Ze9Tc6PLHj7vNT54MHvnoEcZ/+HDWbLW12hvqki0jpSNvdwRq/I5CqOa9ki15ZXpHyx2p3I6OtO+3bFGiuo56ux3CHTa51IzsjFszmIp0Mj6aan9TokfS3xekU8keiXRs2u/DlNhYmPDsaSadSp9+uvBZ4/jn/iaadPuvTev5C0aOCjmjxo4aaRo5prS+TZsF86lZM+lUalexYtvKtnIgSvorsbLqH4tvLG59vRNPZhEAubc7dSm67Pd+7QJoJA0536CXEDd9RLfKf9ysk7/Dd6izbV2RwbGm372QAeDD4YV9oZgnfZ06Rktfvm7ASFpjxcA1bb19KdvkUgMLgAKC7gC872BeXq/nzwe5W/AUGVDhkkSNR2kwZGW0hKiNDh7NMEgV2h0OkY8paMQEgPIsJRTiHERFlBOoiXMFDPkELQXJokOc/9Cy8mh73touvWdUghU8f+A1dcYzSMz2gvbVKG5KPZCjRwLyJKsWztghL7Ehvm0hYsAwtXCSHsOmIeiZAmpJnEhfpqlpe0miqR3sMaQIVAFPP8DTSMeE9FL+vAtkvTQUHgmPLIs82INcIhsBZ203qutJLonerIIQBjCY8i1wUtyoMbME9O2zAqSJhJuR7pVSl86M1Sb769ubPAQE8avdlGgxYsURVzxmdxXpehKkFq3vvN/yxzljFMKMqW4o4qJV3ybLYAAA') format('woff2'),
|
|
4
|
+
url('data:font/woff;base64,d09GRgABAAAAAAW4AAsAAAAACNQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAARAAAAGA8FUnoY21hcAAAAYgAAAB9AAAB1k7+hjNnbHlmAAACCAAAAZoAAAIcJRpmcmhlYWQAAAOkAAAALwAAADYqdj6waGhlYQAAA9QAAAAcAAAAJAfeA4hobXR4AAAD8AAAAA4AAAAcHAAAAGxvY2EAAAQAAAAAEAAAABABlgIqbWF4cAAABBAAAAAfAAAAIAEWADtuYW1lAAAEMAAAAUAAAAJnEKM8sHBvc3QAAAVwAAAASAAAAF/a9ea9eJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGFhYJzAwMrAwNTJdIaBgaEfQjO+ZjBi5ACKMrAyM2AFAWmuKQwHnjE8l2Bu+N/AwMB8hwFIMjCiKGICAGUXDHl4nO2RwQnDQAwER/blCMbEXxeROvLKx7+UkpfL1ZXhrE4mpIjomAMJsYJd4AKM4i4K2I4R9dbU+nxk6vPCU/3MlYHi5g/f2tLW4wDnt/uWaft2vlAfpFV1UbpW+dfc/9fZ1fAxiSTcErkmd5NIyrck9tuSRIptTbAPCuEd+gAAAHicfU+7TuNQFDwPYojAK1kmIGxhcWPZUVxQEAIVyCiGii+gogLRp2Qlr0JJjURoQgNfQLla/8AWW0KVgscHQMPjXjgmEtshnceMdDRnBioA70M+ZwVzMA8KElgEQFW35jGsWzVneqalllbWsLW00naWY1Q1NYfKcUMhoWqrqK1qnOvCdge269qUjsDbI6W6oLQYuLbJR5gXXHsoFMpDASTADFOT4sDsIqDQfCFNAVg8PfMlj8MYTMBU6cdRDkq3QqfFOxp4WwM+/O122Xp74imdUlcfUxfkVFoEsChVSrcIBEZ4PtLNx4B/SdYAGt/l5Jq8/ArJhd7z4gsvjj0qvDgXcCM/i98/Y8/E1Oc88qX0hh9F/mXk0akf6cY9/TENvPajfOTrveAr3oBJIY0qjldxtoqryFeZOTL9DPfNaYZ7eJiZHumO6eF+x5yYfgcPTC/DQ9Eg0bjlM/bBhRCgouqLKGbXUawHKBl+IP7PUsYImfVLc6spRdbn1v+CJAnIKqff3Eyokmw2ZetX2XSXBPr186ASJB+iQ326AAB4nGNgZGBgAGLnedMk4/ltvjJwszCAwOPVtZEI+n8DCwNzI5DLwcAEEgUAHdYKGgB4nGNgZGBgbvjfwBDDwgACQJKRARWwAwBHDQJweJxjYWBgYMGBAQHcAB0AAAAAAAAASgBoAHYAtADWAQ54nGNgZGBgYGfQZ2BlAAEmIOYCQgaG/2A+AwAOEQFSAHichZE9bsJAEIWfwZAElChKpDRpVikoEsn8lEipUKCnoAez5ke211ovSNQ5TY6QE+QI6Whzikh52EMDRbza2W/evpkdyQDusIeH8rvnLtnDJbOSK7jAo3CV+pOwT34WrqGJnnCd+qtwAy94E26yY8YOnn/FrIV3YQ+3+BCu4AafwlXqX8I++Vu4hgf8CNep/wo3MPGuhZtoeeHA6qnTczXbqVVo0sik7niO9WITT+2pPNE2X5lUdYPOURrpVNtjm3y76DkXqciaRA15q+PYqMyatQ5dsHQu67fbkehBaBIMYKExhWOcQ2GGHeMKIQxSREV0Z/mY7gU2iFlp/3VP6LbIqR9yhS4CdM5cI7rSwnk6TY4tX+tRdXQrbsuahDSUWs1JYrLiDzzcramE1AMsi6oMfbS5ohN/UMyQ/AHYk29XeJxjYGKAAC4G7ICdkYmRmZGFkZWRjZGdkYOBrTQvJT85mwVEcORm5mXmZlalshelFpfkF6WyJufkF6dy5CZWgIUZGACPyRBp') format('woff'),
|
|
5
5
|
url('data:font/ttf;base64,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') format('truetype');
|
|
6
6
|
}
|
|
7
|
-
.iconfont[data-v-98e8fdca] {
|
|
8
|
-
font-family: "iconfont" !important;
|
|
9
|
-
font-size: 16px;
|
|
10
|
-
font-style: normal;
|
|
11
|
-
-webkit-font-smoothing: antialiased;
|
|
7
|
+
.iconfont[data-v-98e8fdca] {
|
|
8
|
+
font-family: "iconfont" !important;
|
|
9
|
+
font-size: 16px;
|
|
10
|
+
font-style: normal;
|
|
11
|
+
-webkit-font-smoothing: antialiased;
|
|
12
12
|
-moz-osx-font-smoothing: grayscale;
|
|
13
13
|
}
|
|
14
|
-
.icon-undock[data-v-98e8fdca]:before {
|
|
14
|
+
.icon-undock[data-v-98e8fdca]:before {
|
|
15
15
|
content: "\e718";
|
|
16
16
|
}
|
|
17
|
-
.icon-dock[data-v-98e8fdca]:before {
|
|
17
|
+
.icon-dock[data-v-98e8fdca]:before {
|
|
18
18
|
content: "\e601";
|
|
19
19
|
}
|
|
20
|
-
.icon-minimize[data-v-98e8fdca]:before {
|
|
20
|
+
.icon-minimize[data-v-98e8fdca]:before {
|
|
21
21
|
content: "\e646";
|
|
22
22
|
}
|
|
23
|
-
.icon-restore[data-v-98e8fdca]:before {
|
|
23
|
+
.icon-restore[data-v-98e8fdca]:before {
|
|
24
24
|
content: "\e600";
|
|
25
25
|
}
|
|
26
|
-
.icon-close[data-v-98e8fdca]:before {
|
|
26
|
+
.icon-close[data-v-98e8fdca]:before {
|
|
27
27
|
content: "\e70f";
|
|
28
28
|
}
|
|
29
|
-
.icon-maximize[data-v-98e8fdca]:before {
|
|
29
|
+
.icon-maximize[data-v-98e8fdca]:before {
|
|
30
30
|
content: "\e651";
|
|
31
31
|
}
|
|
32
32
|
.draggable-panel[data-v-98e8fdca] {
|