ym-giswidget-2d 1.0.49 → 1.0.51
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/draw/Draw.vue.d.ts +3 -0
- package/components/draw/Draw.vue.js +8 -3
- package/components/draw/index.d.ts +4 -0
- package/components/layer-tree/LayerTree.vue.d.ts +5 -2
- package/components/layer-tree/LayerTree.vue.js +1 -1
- package/components/layer-tree/LayerTree.vue2.js +27 -8
- package/components/layer-tree/index.css +31 -16
- package/components/layer-tree/index.d.ts +3 -0
- package/components/map-view/MapView.vue.d.ts +11 -3
- package/components/map-view/MapView.vue.js +17 -1
- package/components/map-view/index.d.ts +6 -1
- package/components/multi-screen/MultiScreen.vue.d.ts +4 -1
- package/components/multi-screen/index.d.ts +4 -1
- package/components/popup/Popup.vue.js +1 -1
- package/components/popup/Popup.vue2.js +6 -1
- package/components/popup/index.css +10 -10
- package/components/toc-card/TocCard.vue.d.ts +2 -0
- package/components/toc-card/TocCard.vue.js +1 -1
- package/components/toc-card/TocCard.vue2.js +4 -2
- package/components/toc-card/index.css +1 -1
- package/components/toc-card/index.d.ts +3 -0
- 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,6 +1,9 @@
|
|
|
1
1
|
import { default as OLMap } from 'ym-gis-2d/mapView/Map';
|
|
2
|
+
import { default as IStyle } from 'ym-gis-2d/entity/style/IStyle';
|
|
2
3
|
type __VLS_Props = {
|
|
3
4
|
map: OLMap;
|
|
5
|
+
geometryType?: "polygon" | "point" | "polyline" | "rectangle" | "circle";
|
|
6
|
+
style?: IStyle;
|
|
4
7
|
};
|
|
5
8
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
6
9
|
export default _default;
|
|
@@ -3,14 +3,18 @@ import Draw from "ym-gis-2d/interaction/Draw";
|
|
|
3
3
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
4
4
|
__name: "Draw",
|
|
5
5
|
props: {
|
|
6
|
-
map: {}
|
|
6
|
+
map: {},
|
|
7
|
+
geometryType: {},
|
|
8
|
+
style: {}
|
|
7
9
|
},
|
|
8
10
|
setup(__props) {
|
|
9
11
|
const props = __props;
|
|
10
12
|
onMounted(() => {
|
|
11
13
|
const currentLayerInfo = props.map.currentEditLayer;
|
|
12
14
|
let geometryType = "polygon";
|
|
13
|
-
if (
|
|
15
|
+
if (props.geometryType) {
|
|
16
|
+
geometryType = props.geometryType;
|
|
17
|
+
} else if (currentLayerInfo && currentLayerInfo.geometryType) {
|
|
14
18
|
switch (currentLayerInfo.geometryType) {
|
|
15
19
|
case 1:
|
|
16
20
|
geometryType = "point";
|
|
@@ -30,7 +34,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
30
34
|
source = layersource;
|
|
31
35
|
}
|
|
32
36
|
const draw = new Draw(geometryType, {
|
|
33
|
-
source
|
|
37
|
+
source,
|
|
38
|
+
style: props.style
|
|
34
39
|
});
|
|
35
40
|
props.map.interactionManager.addInteraction("draw", draw);
|
|
36
41
|
draw.on("drawend", (event) => {
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
export declare const Draw: import('../../utils').WithInstall<import('vue').DefineComponent<{
|
|
2
2
|
map: import('ym-gis-2d/mapView/Map').default;
|
|
3
|
+
geometryType?: "polygon" | "point" | "polyline" | "rectangle" | "circle";
|
|
4
|
+
style?: import('ym-gis-2d/entity/style/IStyle').default;
|
|
3
5
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
4
6
|
map: import('ym-gis-2d/mapView/Map').default;
|
|
7
|
+
geometryType?: "polygon" | "point" | "polyline" | "rectangle" | "circle";
|
|
8
|
+
style?: import('ym-gis-2d/entity/style/IStyle').default;
|
|
5
9
|
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>>;
|
|
6
10
|
export default Draw;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { FilterNodeMethodFunction } from 'element-plus';
|
|
1
2
|
import { IMapService } from 'ym-gis-2d/entity';
|
|
2
3
|
import { default as OLMap } from 'ym-gis-2d/mapView/Map';
|
|
3
4
|
type __VLS_Props = {
|
|
@@ -5,6 +6,7 @@ type __VLS_Props = {
|
|
|
5
6
|
map: OLMap;
|
|
6
7
|
editLayerTag?: string;
|
|
7
8
|
showOpacity?: boolean;
|
|
9
|
+
showFilter?: boolean;
|
|
8
10
|
};
|
|
9
11
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
10
12
|
loaded: (...args: any[]) => void;
|
|
@@ -12,6 +14,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
12
14
|
onLoaded?: ((...args: any[]) => any) | undefined;
|
|
13
15
|
}>, {
|
|
14
16
|
showOpacity: boolean;
|
|
17
|
+
showFilter: boolean;
|
|
15
18
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
16
19
|
tocTree: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
17
20
|
data: {
|
|
@@ -209,7 +212,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
209
212
|
data: import('element-plus').TreeNodeData[];
|
|
210
213
|
lazy: boolean;
|
|
211
214
|
load: import('element-plus').LoadFunction;
|
|
212
|
-
filterNodeMethod: import('element-plus').FilterNodeMethodFunction;
|
|
215
|
+
filterNodeMethod: import('element-plus/es/components/tree/src/tree.type').FilterNodeMethodFunction;
|
|
213
216
|
key: import('element-plus').TreeKey;
|
|
214
217
|
defaultCheckedKeys: import('element-plus').TreeKey[];
|
|
215
218
|
checkStrictly: boolean;
|
|
@@ -597,7 +600,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
597
600
|
data: import('element-plus').TreeNodeData[];
|
|
598
601
|
lazy: boolean;
|
|
599
602
|
load: import('element-plus').LoadFunction;
|
|
600
|
-
filterNodeMethod: import('element-plus').FilterNodeMethodFunction;
|
|
603
|
+
filterNodeMethod: import('element-plus/es/components/tree/src/tree.type').FilterNodeMethodFunction;
|
|
601
604
|
key: import('element-plus').TreeKey;
|
|
602
605
|
defaultCheckedKeys: import('element-plus').TreeKey[];
|
|
603
606
|
checkStrictly: boolean;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import _sfc_main from "./LayerTree.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
3
|
import _export_sfc from "../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const _LayerTree = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
4
|
+
const _LayerTree = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-9b73a639"]]);
|
|
5
5
|
export {
|
|
6
6
|
_LayerTree as default
|
|
7
7
|
};
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { ElTooltip, ElSlider } from "element-plus/es";
|
|
1
|
+
import { ElInput, ElTooltip, ElSlider } from "element-plus/es";
|
|
2
2
|
import "element-plus/es/components/base/style/css";
|
|
3
3
|
import "element-plus/es/components/slider/style/css";
|
|
4
4
|
import "element-plus/es/components/tooltip/style/css";
|
|
5
|
-
import
|
|
5
|
+
import "element-plus/es/components/input/style/css";
|
|
6
|
+
import { defineComponent, ref, toRaw, reactive, watch, onMounted, computed, createElementBlock, openBlock, createBlock, createCommentVNode, createVNode, unref, withCtx, createElementVNode, withModifiers, normalizeClass, createTextVNode, toDisplayString, nextTick } from "vue";
|
|
6
7
|
import { ElMessage, ElTree } from "element-plus";
|
|
7
8
|
import LayerManager from "ym-gis-2d/layers/LayerManager";
|
|
8
9
|
import { mapServiceTreeTransform } from "ym-gis-2d/utils/LayerUtil";
|
|
@@ -15,17 +16,19 @@ import editLayerImg from "../../assets/img/editLayerIcon.png.js";
|
|
|
15
16
|
const _hoisted_1 = { class: "custom-tree-node" };
|
|
16
17
|
const _hoisted_2 = { class: "icontest" };
|
|
17
18
|
const _hoisted_3 = ["src", "id", "onClick"];
|
|
18
|
-
const _hoisted_4 = { class: "opacity-text" };
|
|
19
|
+
const _hoisted_4 = { class: "opacity-font opacity-text" };
|
|
19
20
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
20
21
|
__name: "LayerTree",
|
|
21
22
|
props: {
|
|
22
23
|
data: {},
|
|
23
24
|
map: {},
|
|
24
25
|
editLayerTag: {},
|
|
25
|
-
showOpacity: { type: Boolean, default: false }
|
|
26
|
+
showOpacity: { type: Boolean, default: false },
|
|
27
|
+
showFilter: { type: Boolean, default: false }
|
|
26
28
|
},
|
|
27
29
|
emits: ["loaded"],
|
|
28
30
|
setup(__props, { emit: __emit }) {
|
|
31
|
+
const filterText = ref("");
|
|
29
32
|
const tocTree = ref();
|
|
30
33
|
const emit = __emit;
|
|
31
34
|
const props = __props;
|
|
@@ -37,6 +40,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
37
40
|
currentEditLayerId: ""
|
|
38
41
|
});
|
|
39
42
|
const treenodecontentheight = ref("49px");
|
|
43
|
+
watch(filterText, (val) => {
|
|
44
|
+
tocTree.value.filter(val);
|
|
45
|
+
});
|
|
40
46
|
onMounted(async () => {
|
|
41
47
|
if (!props.showOpacity) {
|
|
42
48
|
treenodecontentheight.value = "26px";
|
|
@@ -61,6 +67,10 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
61
67
|
return layerImg;
|
|
62
68
|
}
|
|
63
69
|
});
|
|
70
|
+
function filterNode(value, data) {
|
|
71
|
+
if (!value) return true;
|
|
72
|
+
return data.title.includes(value);
|
|
73
|
+
}
|
|
64
74
|
function initLayers(isMounted) {
|
|
65
75
|
if (!props.data) {
|
|
66
76
|
return;
|
|
@@ -185,9 +195,16 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
185
195
|
return result;
|
|
186
196
|
}
|
|
187
197
|
return (_ctx, _cache) => {
|
|
198
|
+
const _component_el_input = ElInput;
|
|
188
199
|
const _component_el_tooltip = ElTooltip;
|
|
189
200
|
const _component_el_slider = ElSlider;
|
|
190
201
|
return openBlock(), createElementBlock("div", null, [
|
|
202
|
+
props.showFilter ? (openBlock(), createBlock(_component_el_input, {
|
|
203
|
+
key: 0,
|
|
204
|
+
modelValue: filterText.value,
|
|
205
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => filterText.value = $event),
|
|
206
|
+
placeholder: "请输入服务名称"
|
|
207
|
+
}, null, 8, ["modelValue"])) : createCommentVNode("", true),
|
|
191
208
|
createVNode(unref(ElTree), {
|
|
192
209
|
class: "toc-tree el-current",
|
|
193
210
|
data: unref(reactiveValue).layerData,
|
|
@@ -201,14 +218,15 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
201
218
|
draggable: false,
|
|
202
219
|
onCheckChange: onCheckLayer,
|
|
203
220
|
onNodeDrop: handleDrop,
|
|
204
|
-
"allow-drop": handleEnter
|
|
221
|
+
"allow-drop": handleEnter,
|
|
222
|
+
"filter-node-method": filterNode
|
|
205
223
|
}, {
|
|
206
224
|
default: withCtx(({ node, data }) => [
|
|
207
225
|
createElementVNode("div", _hoisted_1, [
|
|
208
226
|
createElementVNode("span", _hoisted_2, [
|
|
209
227
|
createElementVNode("img", {
|
|
210
228
|
onClick: [
|
|
211
|
-
_cache[
|
|
229
|
+
_cache[1] || (_cache[1] = withModifiers(() => {
|
|
212
230
|
}, ["stop"])),
|
|
213
231
|
($event) => iconClick(data)
|
|
214
232
|
],
|
|
@@ -233,12 +251,13 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
233
251
|
]),
|
|
234
252
|
props.showOpacity && data.url ? (openBlock(), createElementBlock("div", {
|
|
235
253
|
key: 0,
|
|
236
|
-
onClick: _cache[
|
|
254
|
+
onClick: _cache[3] || (_cache[3] = withModifiers(() => {
|
|
237
255
|
}, ["stop"])),
|
|
238
256
|
class: "opacity-container"
|
|
239
257
|
}, [
|
|
258
|
+
_cache[4] || (_cache[4] = createElementVNode("span", { class: "opacity-font opacity-label" }, "透明度", -1)),
|
|
240
259
|
createVNode(_component_el_slider, {
|
|
241
|
-
onClick: _cache[
|
|
260
|
+
onClick: _cache[2] || (_cache[2] = withModifiers(() => {
|
|
242
261
|
}, ["stop"])),
|
|
243
262
|
modelValue: data.opacity,
|
|
244
263
|
"onUpdate:modelValue": ($event) => data.opacity = $event,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
|
-
.layer-btn[data-v-
|
|
2
|
+
.layer-btn[data-v-9b73a639] {
|
|
3
3
|
background-color: var(--system-primary-color);
|
|
4
4
|
color: var(--system-primary-text-color);
|
|
5
5
|
font-size: var(--system-primary-text-size);
|
|
@@ -12,31 +12,31 @@
|
|
|
12
12
|
cursor: pointer;
|
|
13
13
|
border-radius: 3px;
|
|
14
14
|
}
|
|
15
|
-
.add-toc-tree[data-v-
|
|
15
|
+
.add-toc-tree[data-v-9b73a639] {
|
|
16
16
|
color: var(--el-text-color-regular) !important;
|
|
17
17
|
}
|
|
18
|
-
.el-tree[data-v-
|
|
18
|
+
.el-tree[data-v-9b73a639] {
|
|
19
19
|
background: unset;
|
|
20
20
|
color: var(--system-primary-text-color);
|
|
21
21
|
font-size: var(--system-primary-text-size);
|
|
22
22
|
overflow: auto;
|
|
23
23
|
max-height: 400px;
|
|
24
24
|
}
|
|
25
|
-
.el-tree[data-v-
|
|
25
|
+
.el-tree[data-v-9b73a639] .el-tree-node :hover {
|
|
26
26
|
background: unset;
|
|
27
27
|
}
|
|
28
|
-
.el-tree[data-v-
|
|
28
|
+
.el-tree[data-v-9b73a639] .el-tree-node :focus {
|
|
29
29
|
background: unset;
|
|
30
30
|
}
|
|
31
|
-
.el-tree[data-v-
|
|
31
|
+
.el-tree[data-v-9b73a639] .el-tree-node .el-tree-node__content {
|
|
32
32
|
background: unset;
|
|
33
33
|
align-items: unset;
|
|
34
34
|
height: 100%;
|
|
35
35
|
}
|
|
36
|
-
.el-tree .active[data-v-
|
|
36
|
+
.el-tree .active[data-v-9b73a639] {
|
|
37
37
|
color: var(--system-primary-text-active-color);
|
|
38
38
|
}
|
|
39
|
-
.el-tree .layer-span[data-v-
|
|
39
|
+
.el-tree .layer-span[data-v-9b73a639] .el-only-child__content {
|
|
40
40
|
display: block;
|
|
41
41
|
width: 95px;
|
|
42
42
|
word-wrap: break-word;
|
|
@@ -48,30 +48,45 @@
|
|
|
48
48
|
white-space: nowrap;
|
|
49
49
|
/*强制不换行*/
|
|
50
50
|
}
|
|
51
|
-
.el-tree .custom-tree-node
|
|
51
|
+
.el-tree .custom-tree-node[data-v-9b73a639] {
|
|
52
|
+
min-width: 140px;
|
|
53
|
+
}
|
|
54
|
+
.el-tree .custom-tree-node .icontest[data-v-9b73a639] {
|
|
52
55
|
display: flex;
|
|
53
56
|
font-size: var(--system-primary-text-size);
|
|
54
57
|
}
|
|
55
|
-
.el-tree .custom-tree-node .icontest .treeIconImg[data-v-
|
|
58
|
+
.el-tree .custom-tree-node .icontest .treeIconImg[data-v-9b73a639] {
|
|
56
59
|
height: 17px;
|
|
57
60
|
margin: 2px;
|
|
58
61
|
}
|
|
59
|
-
.el-tree .custom-tree-node .opacity-container[data-v-
|
|
62
|
+
.el-tree .custom-tree-node .opacity-container[data-v-9b73a639] {
|
|
60
63
|
display: flex;
|
|
61
64
|
}
|
|
62
|
-
.el-tree .custom-tree-node .opacity-container .opacity-
|
|
65
|
+
.el-tree .custom-tree-node .opacity-container .opacity-font[data-v-9b73a639] {
|
|
66
|
+
font-size: 12px;
|
|
67
|
+
}
|
|
68
|
+
.el-tree .custom-tree-node .opacity-container .opacity-label[data-v-9b73a639] {
|
|
69
|
+
margin-right: 13px;
|
|
70
|
+
}
|
|
71
|
+
.el-tree .custom-tree-node .opacity-container .opacity-text[data-v-9b73a639] {
|
|
63
72
|
margin-left: 13px;
|
|
64
73
|
}
|
|
65
|
-
.el-tree .el-slider[data-v-
|
|
74
|
+
.el-tree .el-slider[data-v-9b73a639] {
|
|
66
75
|
height: 20px;
|
|
67
76
|
margin-bottom: 8px;
|
|
68
77
|
}
|
|
69
|
-
.el-tree .el-slider[data-v-
|
|
78
|
+
.el-tree .el-slider[data-v-9b73a639] .el-slider__runway {
|
|
70
79
|
background-color: var(--el-slider-runway-bg-color) !important;
|
|
71
80
|
}
|
|
72
|
-
.el-tree .el-slider[data-v-
|
|
81
|
+
.el-tree .el-slider[data-v-9b73a639] .el-slider__runway .el-slider__bar {
|
|
73
82
|
background-color: var(--el-slider-main-bg-color) !important;
|
|
74
83
|
}
|
|
75
|
-
[data-v-
|
|
84
|
+
[data-v-9b73a639] .el-checkbox__label {
|
|
76
85
|
margin-left: 14px;
|
|
86
|
+
}
|
|
87
|
+
.el-input[data-v-9b73a639] .el-input__wrapper {
|
|
88
|
+
background-color: unset;
|
|
89
|
+
}
|
|
90
|
+
.el-input[data-v-9b73a639] .el-input__wrapper .el-input__inner {
|
|
91
|
+
color: var(--system-primary-text-color);
|
|
77
92
|
}
|
|
@@ -3,6 +3,7 @@ export declare const LayerTree: import('../../utils').WithInstall<import('vue').
|
|
|
3
3
|
map: import('ym-gis-2d/mapView/Map').default;
|
|
4
4
|
editLayerTag?: string;
|
|
5
5
|
showOpacity?: boolean;
|
|
6
|
+
showFilter?: boolean;
|
|
6
7
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
7
8
|
loaded: (...args: any[]) => void;
|
|
8
9
|
}, string, import('vue').PublicProps, Readonly<{
|
|
@@ -10,10 +11,12 @@ export declare const LayerTree: import('../../utils').WithInstall<import('vue').
|
|
|
10
11
|
map: import('ym-gis-2d/mapView/Map').default;
|
|
11
12
|
editLayerTag?: string;
|
|
12
13
|
showOpacity?: boolean;
|
|
14
|
+
showFilter?: boolean;
|
|
13
15
|
}> & Readonly<{
|
|
14
16
|
onLoaded?: ((...args: any[]) => any) | undefined;
|
|
15
17
|
}>, {
|
|
16
18
|
showOpacity: boolean;
|
|
19
|
+
showFilter: boolean;
|
|
17
20
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
18
21
|
tocTree: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
19
22
|
data: {
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { default as IStyle } from 'ym-gis-2d/entity/style/IStyle';
|
|
1
2
|
type __VLS_Props = {
|
|
2
3
|
projection?: number;
|
|
3
4
|
center?: number[];
|
|
@@ -9,6 +10,8 @@ type __VLS_Props = {
|
|
|
9
10
|
maxResolution?: number;
|
|
10
11
|
constrainResolution?: boolean;
|
|
11
12
|
};
|
|
13
|
+
declare function addWKT(wkt: string, proj: string, tag?: string, location?: boolean, properties?: any, style?: IStyle): void;
|
|
14
|
+
declare function addWKTs(wkts: string[], proj: string, tag?: string, location?: boolean, style?: IStyle, properties?: any): void;
|
|
12
15
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
13
16
|
mapView: {
|
|
14
17
|
currentEditLayer?: {
|
|
@@ -50,7 +53,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
50
53
|
fieldLength?: number | undefined;
|
|
51
54
|
fieldPrecision?: number | undefined;
|
|
52
55
|
editDefaultValue?: string | undefined;
|
|
53
|
-
fieldDomain?:
|
|
56
|
+
fieldDomain?: {
|
|
57
|
+
dicCode: string;
|
|
58
|
+
dicValue: string;
|
|
59
|
+
}[] | undefined;
|
|
54
60
|
updateTime: string;
|
|
55
61
|
createTime: string;
|
|
56
62
|
createUserId: string;
|
|
@@ -402,8 +408,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
402
408
|
resetViewProjection: (projection: string) => void;
|
|
403
409
|
sortTemLayer: () => void;
|
|
404
410
|
getExtent: () => import('ol/extent').Extent;
|
|
405
|
-
addWKT: (wkt: string, proj: string, tag?: string, location?: boolean, properties?: any, style?:
|
|
406
|
-
addWKTs: (wkts: string[], proj: string, tag?: string, location?: boolean, style?:
|
|
411
|
+
addWKT: (wkt: string, proj: string, tag?: string, location?: boolean, properties?: any, style?: IStyle) => import('ym-gis-2d/entity/Feature').default | undefined;
|
|
412
|
+
addWKTs: (wkts: string[], proj: string, tag?: string, location?: boolean, style?: IStyle, properties?: any) => import('ym-gis-2d/entity/Feature').default[] | undefined;
|
|
407
413
|
locationWKT: (wkt: string, proj?: string, ratio?: number, isFlash?: boolean) => void;
|
|
408
414
|
locationWKTs: (wkts: string[], proj?: string, ratio?: number, isFlash?: boolean) => void;
|
|
409
415
|
locationGeometry: (geometry: import('ol/geom').Geometry, proj?: string, ratio?: number, isFlash?: boolean) => void;
|
|
@@ -491,6 +497,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
491
497
|
removeEventListener: (type: string, listener: import('ol/events').Listener) => void;
|
|
492
498
|
dispose: () => void;
|
|
493
499
|
} | undefined;
|
|
500
|
+
addWKT: typeof addWKT;
|
|
501
|
+
addWKTs: typeof addWKTs;
|
|
494
502
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
495
503
|
init: (...args: any[]) => void;
|
|
496
504
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
@@ -35,8 +35,24 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
35
35
|
});
|
|
36
36
|
emit("init", reactiveValue.mapView);
|
|
37
37
|
});
|
|
38
|
+
function addWKT(wkt, proj, tag, location = true, properties, style = { color: "rgba(255, 0, 0, 0.2)", opacity: 0.2, outlineColor: "rgba(255, 0, 0, 1)", outlineWidth: 2 }) {
|
|
39
|
+
if (reactiveValue.mapView) {
|
|
40
|
+
reactiveValue.mapView.addWKT(wkt, proj, tag, location, properties, style);
|
|
41
|
+
} else {
|
|
42
|
+
console.error("地图未初始化完成,无法添加WKT数据");
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
function addWKTs(wkts, proj, tag, location = true, style = { color: "rgba(255, 0, 0, 0.2)", opacity: 0.2, outlineColor: "rgba(255, 0, 0, 1)", outlineWidth: 2 }, properties) {
|
|
46
|
+
if (reactiveValue.mapView) {
|
|
47
|
+
reactiveValue.mapView.addWKTs(wkts, proj, tag, location, style, properties);
|
|
48
|
+
} else {
|
|
49
|
+
console.error("地图未初始化完成,无法添加WKT数据");
|
|
50
|
+
}
|
|
51
|
+
}
|
|
38
52
|
__expose({
|
|
39
|
-
mapView: reactiveValue.mapView
|
|
53
|
+
mapView: reactiveValue.mapView,
|
|
54
|
+
addWKT,
|
|
55
|
+
addWKTs
|
|
40
56
|
});
|
|
41
57
|
return (_ctx, _cache) => {
|
|
42
58
|
return openBlock(), createElementBlock("div", {
|
|
@@ -49,7 +49,10 @@ export declare const MapView: import('../../utils').WithInstall<import('vue').De
|
|
|
49
49
|
fieldLength?: number | undefined;
|
|
50
50
|
fieldPrecision?: number | undefined;
|
|
51
51
|
editDefaultValue?: string | undefined;
|
|
52
|
-
fieldDomain?:
|
|
52
|
+
fieldDomain?: {
|
|
53
|
+
dicCode: string;
|
|
54
|
+
dicValue: string;
|
|
55
|
+
}[] | undefined;
|
|
53
56
|
updateTime: string;
|
|
54
57
|
createTime: string;
|
|
55
58
|
createUserId: string;
|
|
@@ -490,6 +493,8 @@ export declare const MapView: import('../../utils').WithInstall<import('vue').De
|
|
|
490
493
|
removeEventListener: (type: string, listener: import('ol/events').Listener) => void;
|
|
491
494
|
dispose: () => void;
|
|
492
495
|
} | undefined;
|
|
496
|
+
addWKT: (wkt: string, proj: string, tag?: string, location?: boolean, properties?: any, style?: import('ym-gis-2d/entity/style/IStyle').default) => void;
|
|
497
|
+
addWKTs: (wkts: string[], proj: string, tag?: string, location?: boolean, style?: import('ym-gis-2d/entity/style/IStyle').default, properties?: any) => void;
|
|
493
498
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
494
499
|
init: (...args: any[]) => void;
|
|
495
500
|
}, string, import('vue').PublicProps, Readonly<{
|
|
@@ -56,7 +56,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
56
56
|
fieldLength?: number | undefined;
|
|
57
57
|
fieldPrecision?: number | undefined;
|
|
58
58
|
editDefaultValue?: string | undefined;
|
|
59
|
-
fieldDomain?:
|
|
59
|
+
fieldDomain?: {
|
|
60
|
+
dicCode: string;
|
|
61
|
+
dicValue: string;
|
|
62
|
+
}[] | undefined;
|
|
60
63
|
updateTime: string;
|
|
61
64
|
createTime: string;
|
|
62
65
|
createUserId: string;
|
|
@@ -52,7 +52,10 @@ export declare const MultiScreen: import('../../utils').WithInstall<import('vue'
|
|
|
52
52
|
fieldLength?: number | undefined;
|
|
53
53
|
fieldPrecision?: number | undefined;
|
|
54
54
|
editDefaultValue?: string | undefined;
|
|
55
|
-
fieldDomain?:
|
|
55
|
+
fieldDomain?: {
|
|
56
|
+
dicCode: string;
|
|
57
|
+
dicValue: string;
|
|
58
|
+
}[] | undefined;
|
|
56
59
|
updateTime: string;
|
|
57
60
|
createTime: string;
|
|
58
61
|
createUserId: string;
|
|
@@ -2,7 +2,7 @@ import _sfc_main from "./Popup.vue2.js";
|
|
|
2
2
|
/* empty css */
|
|
3
3
|
/* empty css */
|
|
4
4
|
import _export_sfc from "../../_virtual/_plugin-vue_export-helper.js";
|
|
5
|
-
const _Popup = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
5
|
+
const _Popup = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-a89c3ac4"]]);
|
|
6
6
|
export {
|
|
7
7
|
_Popup as default
|
|
8
8
|
};
|
|
@@ -165,7 +165,12 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
165
165
|
continue;
|
|
166
166
|
}
|
|
167
167
|
let value = attributes[key];
|
|
168
|
-
if (field.
|
|
168
|
+
if (field.fieldDomain && field.fieldDomain.length > 0) {
|
|
169
|
+
const domain = field.fieldDomain.find((t) => t.dicCode === value);
|
|
170
|
+
if (domain) {
|
|
171
|
+
value = domain.dicValue;
|
|
172
|
+
}
|
|
173
|
+
} else if (field.fieldType == 4 && value) {
|
|
169
174
|
value = new Date(attributes[key]).toLocaleDateString();
|
|
170
175
|
}
|
|
171
176
|
attributesInfos.push({ ...field, value });
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.identify-popup[data-v-
|
|
1
|
+
.identify-popup[data-v-a89c3ac4] {
|
|
2
2
|
top: unset !important;
|
|
3
3
|
overflow: unset !important;
|
|
4
4
|
transform: unset !important;
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
left: -50px;
|
|
8
8
|
transform: unset !important;
|
|
9
9
|
}
|
|
10
|
-
.identify-popup[data-v-
|
|
10
|
+
.identify-popup[data-v-a89c3ac4]::after, .identify-popup[data-v-a89c3ac4]::before {
|
|
11
11
|
top: 100%;
|
|
12
12
|
border: solid transparent;
|
|
13
13
|
content: " ";
|
|
@@ -16,39 +16,39 @@
|
|
|
16
16
|
position: absolute;
|
|
17
17
|
pointer-events: none;
|
|
18
18
|
}
|
|
19
|
-
.identify-popup[data-v-
|
|
19
|
+
.identify-popup[data-v-a89c3ac4]::after {
|
|
20
20
|
border-top-color: white;
|
|
21
21
|
border-width: 10px;
|
|
22
22
|
left: 48px;
|
|
23
23
|
margin-left: -10px;
|
|
24
24
|
}
|
|
25
|
-
.identify-popup[data-v-
|
|
25
|
+
.identify-popup[data-v-a89c3ac4]::before {
|
|
26
26
|
border-top-color: #cccccc;
|
|
27
27
|
border-width: 11px;
|
|
28
28
|
left: 48px;
|
|
29
29
|
margin-left: -11px;
|
|
30
30
|
}
|
|
31
|
-
.identify-popup .panel-header .el-select[data-v-
|
|
31
|
+
.identify-popup .panel-header .el-select[data-v-a89c3ac4] {
|
|
32
32
|
--el-fill-color-blank: "";
|
|
33
33
|
--el-input-text-color: var(--system-primary-text-color);
|
|
34
34
|
--el-input-icon-color: var(--system-primary-text-color);
|
|
35
35
|
}
|
|
36
|
-
.identify-popup .identify-popup-content[data-v-
|
|
36
|
+
.identify-popup .identify-popup-content[data-v-a89c3ac4] {
|
|
37
37
|
height: 100%;
|
|
38
38
|
display: flex;
|
|
39
39
|
flex-direction: column;
|
|
40
40
|
}
|
|
41
|
-
.identify-popup .identify-popup-content .el-table[data-v-
|
|
41
|
+
.identify-popup .identify-popup-content .el-table[data-v-a89c3ac4] {
|
|
42
42
|
--el-table-bg-color: "";
|
|
43
43
|
--el-table-tr-bg-color: "";
|
|
44
44
|
--el-table-text-color: var(--system-primary-text-color);
|
|
45
45
|
--el-table-row-hover-bg-color: "";
|
|
46
46
|
height: 100%;
|
|
47
47
|
}
|
|
48
|
-
.identify-popup .identify-popup-content .pagination-block[data-v-
|
|
48
|
+
.identify-popup .identify-popup-content .pagination-block[data-v-a89c3ac4] {
|
|
49
49
|
margin-top: 10px;
|
|
50
50
|
}
|
|
51
|
-
.identify-popup .identify-popup-content .pagination-block .el-pagination[data-v-
|
|
51
|
+
.identify-popup .identify-popup-content .pagination-block .el-pagination[data-v-a89c3ac4] {
|
|
52
52
|
justify-content: center;
|
|
53
53
|
--el-pagination-bg-color: "";
|
|
54
54
|
--el-pagination-text-color: var(--system-primary-text-color);
|
|
@@ -56,6 +56,6 @@
|
|
|
56
56
|
--el-pagination-button-disabled-bg-color: "";
|
|
57
57
|
--el-pagination-button-color: var(--system-primary-text-color);
|
|
58
58
|
}
|
|
59
|
-
.identify-popup .identify-popup-content .pagination-block .el-pagination[data-v-
|
|
59
|
+
.identify-popup .identify-popup-content .pagination-block .el-pagination[data-v-a89c3ac4] .el-icon {
|
|
60
60
|
color: var(--system-primary-text-color);
|
|
61
61
|
}
|
|
@@ -5,6 +5,7 @@ type __VLS_Props = {
|
|
|
5
5
|
map: OLMap;
|
|
6
6
|
editLayerTag?: string;
|
|
7
7
|
showOpacity?: boolean;
|
|
8
|
+
showFilter?: boolean;
|
|
8
9
|
};
|
|
9
10
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
10
11
|
loaded: (...args: any[]) => void;
|
|
@@ -12,5 +13,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
12
13
|
onLoaded?: ((...args: any[]) => any) | undefined;
|
|
13
14
|
}>, {
|
|
14
15
|
showOpacity: boolean;
|
|
16
|
+
showFilter: boolean;
|
|
15
17
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
16
18
|
export default _default;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import _sfc_main from "./TocCard.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
3
|
import _export_sfc from "../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const _TocCard = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
4
|
+
const _TocCard = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-b8e4bc23"]]);
|
|
5
5
|
export {
|
|
6
6
|
_TocCard as default
|
|
7
7
|
};
|
|
@@ -9,7 +9,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
9
9
|
data: {},
|
|
10
10
|
map: {},
|
|
11
11
|
editLayerTag: {},
|
|
12
|
-
showOpacity: { type: Boolean, default: false }
|
|
12
|
+
showOpacity: { type: Boolean, default: false },
|
|
13
|
+
showFilter: { type: Boolean, default: false }
|
|
13
14
|
},
|
|
14
15
|
emits: ["loaded"],
|
|
15
16
|
setup(__props, { emit: __emit }) {
|
|
@@ -27,8 +28,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
27
28
|
map: props.map,
|
|
28
29
|
editLayerTag: props.editLayerTag,
|
|
29
30
|
showOpacity: props.showOpacity,
|
|
31
|
+
showFilter: props.showFilter,
|
|
30
32
|
onLoaded: loadedLayer
|
|
31
|
-
}, null, 8, ["data", "map", "editLayerTag", "showOpacity"])
|
|
33
|
+
}, null, 8, ["data", "map", "editLayerTag", "showOpacity", "showFilter"])
|
|
32
34
|
]),
|
|
33
35
|
_: 1
|
|
34
36
|
});
|
|
@@ -3,6 +3,7 @@ export declare const TocCard: import('../../utils').WithInstall<import('vue').De
|
|
|
3
3
|
map: import('ym-gis-2d/mapView/Map').default;
|
|
4
4
|
editLayerTag?: string;
|
|
5
5
|
showOpacity?: boolean;
|
|
6
|
+
showFilter?: boolean;
|
|
6
7
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
7
8
|
loaded: (...args: any[]) => void;
|
|
8
9
|
}, string, import('vue').PublicProps, Readonly<{
|
|
@@ -10,9 +11,11 @@ export declare const TocCard: import('../../utils').WithInstall<import('vue').De
|
|
|
10
11
|
map: import('ym-gis-2d/mapView/Map').default;
|
|
11
12
|
editLayerTag?: string;
|
|
12
13
|
showOpacity?: boolean;
|
|
14
|
+
showFilter?: boolean;
|
|
13
15
|
}> & Readonly<{
|
|
14
16
|
onLoaded?: ((...args: any[]) => any) | undefined;
|
|
15
17
|
}>, {
|
|
16
18
|
showOpacity: boolean;
|
|
19
|
+
showFilter: boolean;
|
|
17
20
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>>;
|
|
18
21
|
export default TocCard;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ym-giswidget-2d",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.51",
|
|
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.29"
|
|
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-2f4a5739] {
|
|
8
|
-
font-family: "iconfont" !important;
|
|
9
|
-
font-size: 16px;
|
|
10
|
-
font-style: normal;
|
|
11
|
-
-webkit-font-smoothing: antialiased;
|
|
7
|
+
.iconfont[data-v-2f4a5739] {
|
|
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-2f4a5739]:before {
|
|
14
|
+
.icon-undock[data-v-2f4a5739]:before {
|
|
15
15
|
content: "\e718";
|
|
16
16
|
}
|
|
17
|
-
.icon-dock[data-v-2f4a5739]:before {
|
|
17
|
+
.icon-dock[data-v-2f4a5739]:before {
|
|
18
18
|
content: "\e601";
|
|
19
19
|
}
|
|
20
|
-
.icon-minimize[data-v-2f4a5739]:before {
|
|
20
|
+
.icon-minimize[data-v-2f4a5739]:before {
|
|
21
21
|
content: "\e646";
|
|
22
22
|
}
|
|
23
|
-
.icon-restore[data-v-2f4a5739]:before {
|
|
23
|
+
.icon-restore[data-v-2f4a5739]:before {
|
|
24
24
|
content: "\e600";
|
|
25
25
|
}
|
|
26
|
-
.icon-close[data-v-2f4a5739]:before {
|
|
26
|
+
.icon-close[data-v-2f4a5739]:before {
|
|
27
27
|
content: "\e70f";
|
|
28
28
|
}
|
|
29
|
-
.icon-maximize[data-v-2f4a5739]:before {
|
|
29
|
+
.icon-maximize[data-v-2f4a5739]:before {
|
|
30
30
|
content: "\e651";
|
|
31
31
|
}
|
|
32
32
|
.draggable-panel[data-v-2f4a5739] {
|