ym-giswidget-2d 1.0.31 → 1.0.33
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/components/identify/Identify.vue.d.ts +7 -7
- package/components/identify/Identify.vue.js +6 -13
- package/components/identify/index.d.ts +12 -12
- package/components/layer-tree/LayerTree.vue.js +1 -1
- package/components/layer-tree/LayerTree.vue2.js +1 -1
- package/components/layer-tree/index.css +16 -16
- package/components/map-view/MapView.vue.d.ts +4 -3
- package/components/map-view/index.d.ts +4 -3
- package/components/multi-screen/MultiScreen.vue.d.ts +4 -3
- package/components/multi-screen/index.d.ts +4 -3
- package/components/popup/Popup.vue.js +1 -1
- package/components/popup/Popup.vue2.js +1 -1
- package/components/popup/index.css +10 -10
- package/package.json +2 -2
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { default as OLMap } from 'ym-gis-2d/mapView/Map';
|
|
2
|
-
import { default as
|
|
2
|
+
import { default as IStyle } from 'ym-gis-2d/entity/IStyle';
|
|
3
3
|
type __VLS_Props = {
|
|
4
4
|
map: OLMap;
|
|
5
|
-
pointStyle?:
|
|
6
|
-
cancePointStyle?:
|
|
7
|
-
lineStyle?:
|
|
8
|
-
canceLineStyle?:
|
|
9
|
-
polygonStyle?:
|
|
10
|
-
cancePolygonStyle?:
|
|
5
|
+
pointStyle?: IStyle;
|
|
6
|
+
cancePointStyle?: IStyle;
|
|
7
|
+
lineStyle?: IStyle;
|
|
8
|
+
canceLineStyle?: IStyle;
|
|
9
|
+
polygonStyle?: IStyle;
|
|
10
|
+
cancePolygonStyle?: IStyle;
|
|
11
11
|
};
|
|
12
12
|
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>;
|
|
13
13
|
export default _default;
|
|
@@ -2,7 +2,6 @@ import { defineComponent, reactive, onMounted, onUnmounted, createBlock, createC
|
|
|
2
2
|
import Select from "ym-gis-2d/interaction/Select";
|
|
3
3
|
import { ElLoading } from "element-plus";
|
|
4
4
|
import { Popup } from "../popup/index.js";
|
|
5
|
-
import { getSelectPointStyle, getSelectCancePointStyle, getSelectLineStyle, getSelectCancelLineStyle, getSelectPolygonStyle, getSelectCancelPolygonStyle } from "ym-gis-2d/style/StyleManager";
|
|
6
5
|
import FeatureManager from "ym-gis-2d/feature/FeatureManager";
|
|
7
6
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
8
7
|
__name: "Identify",
|
|
@@ -21,20 +20,14 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
21
20
|
features: [],
|
|
22
21
|
postion: []
|
|
23
22
|
});
|
|
24
|
-
const pointStyle = props.pointStyle || getSelectPointStyle();
|
|
25
|
-
const cancePointStyle = props.cancePointStyle || getSelectCancePointStyle();
|
|
26
|
-
const lineStyle = props.lineStyle || getSelectLineStyle();
|
|
27
|
-
const canceLineStyle = props.canceLineStyle || getSelectCancelLineStyle();
|
|
28
|
-
const polygonStyle = props.polygonStyle || getSelectPolygonStyle();
|
|
29
|
-
const cancePolygonStyle = props.cancePolygonStyle || getSelectCancelPolygonStyle();
|
|
30
23
|
onMounted(() => {
|
|
31
24
|
const select = new Select("rectangle", {
|
|
32
|
-
pointStyle,
|
|
33
|
-
cancePointStyle,
|
|
34
|
-
lineStyle,
|
|
35
|
-
canceLineStyle,
|
|
36
|
-
polygonStyle,
|
|
37
|
-
cancePolygonStyle,
|
|
25
|
+
pointStyle: props.pointStyle,
|
|
26
|
+
cancePointStyle: props.cancePointStyle,
|
|
27
|
+
lineStyle: props.lineStyle,
|
|
28
|
+
canceLineStyle: props.canceLineStyle,
|
|
29
|
+
polygonStyle: props.polygonStyle,
|
|
30
|
+
cancePolygonStyle: props.cancePolygonStyle,
|
|
38
31
|
addTempLayer: true,
|
|
39
32
|
selectTempLayer: false
|
|
40
33
|
});
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
export declare const Identify: import('../../utils').WithInstall<import('vue').DefineComponent<{
|
|
2
2
|
map: import('ym-gis-2d/mapView/Map').default;
|
|
3
|
-
pointStyle?: import('
|
|
4
|
-
cancePointStyle?: import('
|
|
5
|
-
lineStyle?: import('
|
|
6
|
-
canceLineStyle?: import('
|
|
7
|
-
polygonStyle?: import('
|
|
8
|
-
cancePolygonStyle?: import('
|
|
3
|
+
pointStyle?: import('ym-gis-2d/entity/IStyle').default;
|
|
4
|
+
cancePointStyle?: import('ym-gis-2d/entity/IStyle').default;
|
|
5
|
+
lineStyle?: import('ym-gis-2d/entity/IStyle').default;
|
|
6
|
+
canceLineStyle?: import('ym-gis-2d/entity/IStyle').default;
|
|
7
|
+
polygonStyle?: import('ym-gis-2d/entity/IStyle').default;
|
|
8
|
+
cancePolygonStyle?: import('ym-gis-2d/entity/IStyle').default;
|
|
9
9
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
10
10
|
map: import('ym-gis-2d/mapView/Map').default;
|
|
11
|
-
pointStyle?: import('
|
|
12
|
-
cancePointStyle?: import('
|
|
13
|
-
lineStyle?: import('
|
|
14
|
-
canceLineStyle?: import('
|
|
15
|
-
polygonStyle?: import('
|
|
16
|
-
cancePolygonStyle?: import('
|
|
11
|
+
pointStyle?: import('ym-gis-2d/entity/IStyle').default;
|
|
12
|
+
cancePointStyle?: import('ym-gis-2d/entity/IStyle').default;
|
|
13
|
+
lineStyle?: import('ym-gis-2d/entity/IStyle').default;
|
|
14
|
+
canceLineStyle?: import('ym-gis-2d/entity/IStyle').default;
|
|
15
|
+
polygonStyle?: import('ym-gis-2d/entity/IStyle').default;
|
|
16
|
+
cancePolygonStyle?: import('ym-gis-2d/entity/IStyle').default;
|
|
17
17
|
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>>;
|
|
18
18
|
export default Identify;
|
|
@@ -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-567f3aad"]]);
|
|
5
5
|
export {
|
|
6
6
|
_LayerTree as default
|
|
7
7
|
};
|
|
@@ -164,7 +164,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
164
164
|
}
|
|
165
165
|
}
|
|
166
166
|
function onOpacityChange(data) {
|
|
167
|
-
const layer = props.map.
|
|
167
|
+
const layer = props.map.getLayerById(data.id);
|
|
168
168
|
if (layer && data.opacity != void 0) {
|
|
169
169
|
layer == null ? void 0 : layer.setOpacity(data.opacity);
|
|
170
170
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
|
-
.layer-btn[data-v-
|
|
2
|
+
.layer-btn[data-v-567f3aad] {
|
|
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-567f3aad] {
|
|
16
16
|
color: var(--el-text-color-regular) !important;
|
|
17
17
|
}
|
|
18
|
-
.el-tree[data-v-
|
|
18
|
+
.el-tree[data-v-567f3aad] {
|
|
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-567f3aad] .el-tree-node :hover {
|
|
26
26
|
background: unset;
|
|
27
27
|
}
|
|
28
|
-
.el-tree[data-v-
|
|
28
|
+
.el-tree[data-v-567f3aad] .el-tree-node :focus {
|
|
29
29
|
background: unset;
|
|
30
30
|
}
|
|
31
|
-
.el-tree[data-v-
|
|
31
|
+
.el-tree[data-v-567f3aad] .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-567f3aad] {
|
|
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-567f3aad] .el-only-child__content {
|
|
40
40
|
display: block;
|
|
41
41
|
width: 95px;
|
|
42
42
|
word-wrap: break-word;
|
|
@@ -48,30 +48,30 @@
|
|
|
48
48
|
white-space: nowrap;
|
|
49
49
|
/*强制不换行*/
|
|
50
50
|
}
|
|
51
|
-
.el-tree .custom-tree-node .icontest[data-v-
|
|
51
|
+
.el-tree .custom-tree-node .icontest[data-v-567f3aad] {
|
|
52
52
|
display: flex;
|
|
53
53
|
font-size: var(--system-primary-text-size);
|
|
54
54
|
}
|
|
55
|
-
.el-tree .custom-tree-node .icontest .treeIconImg[data-v-
|
|
55
|
+
.el-tree .custom-tree-node .icontest .treeIconImg[data-v-567f3aad] {
|
|
56
56
|
height: 17px;
|
|
57
57
|
margin: 2px;
|
|
58
58
|
}
|
|
59
|
-
.el-tree .custom-tree-node .opacity-container[data-v-
|
|
59
|
+
.el-tree .custom-tree-node .opacity-container[data-v-567f3aad] {
|
|
60
60
|
display: flex;
|
|
61
61
|
}
|
|
62
|
-
.el-tree .custom-tree-node .opacity-container .opacity-text[data-v-
|
|
62
|
+
.el-tree .custom-tree-node .opacity-container .opacity-text[data-v-567f3aad] {
|
|
63
63
|
margin-left: 13px;
|
|
64
64
|
}
|
|
65
|
-
.el-tree .el-slider[data-v-
|
|
65
|
+
.el-tree .el-slider[data-v-567f3aad] {
|
|
66
66
|
height: 20px;
|
|
67
67
|
margin-bottom: 8px;
|
|
68
68
|
}
|
|
69
|
-
.el-tree .el-slider[data-v-
|
|
69
|
+
.el-tree .el-slider[data-v-567f3aad] .el-slider__runway {
|
|
70
70
|
background-color: var(--el-slider-runway-bg-color) !important;
|
|
71
71
|
}
|
|
72
|
-
.el-tree .el-slider[data-v-
|
|
72
|
+
.el-tree .el-slider[data-v-567f3aad] .el-slider__runway .el-slider__bar {
|
|
73
73
|
background-color: var(--el-slider-main-bg-color) !important;
|
|
74
74
|
}
|
|
75
|
-
[data-v-
|
|
75
|
+
[data-v-567f3aad] .el-checkbox__label {
|
|
76
76
|
margin-left: 14px;
|
|
77
77
|
}
|
|
@@ -374,12 +374,13 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
374
374
|
};
|
|
375
375
|
getView: () => import('ym-gis-2d/mapView/View').default;
|
|
376
376
|
fitLayer: (layer: import('ym-gis-2d/layers/IBaseLayer').IBaseLayer) => void;
|
|
377
|
+
fitLayerById: (id: string) => void;
|
|
377
378
|
addMapLayer: (layerInfo: import('ym-gis-2d/entity').IMapService) => Promise<import('ol/layer/Base').default>;
|
|
378
379
|
addMapLayers: (layerInfo: import('ym-gis-2d/entity').IMapService[]) => Promise<import('ol/layer/Base').default[]>;
|
|
379
380
|
addLayer: (layer: import('ol/layer/Base').default, fitLayer?: boolean) => void;
|
|
380
381
|
removeLayerById: (id: string) => void;
|
|
381
|
-
|
|
382
|
-
|
|
382
|
+
getLayerById: (id: string) => import('ol/layer/Base').default | undefined;
|
|
383
|
+
getLayerByLayerTag: (layerTag: string) => import('ol/layer/Base').default | undefined;
|
|
383
384
|
getLayersByIds: (ids: string[]) => import('ol/layer/Base').default[];
|
|
384
385
|
getTempLayerById: (id: string) => import('ol/layer').Vector<import('ym-gis-2d/entity/Feature').default>;
|
|
385
386
|
getPointTempLayer: () => import('ol/layer').Vector<import('ym-gis-2d/entity/Feature').default>;
|
|
@@ -389,7 +390,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
389
390
|
resetViewProjection: (projection: string) => void;
|
|
390
391
|
sortTemLayer: () => void;
|
|
391
392
|
getExtent: () => import('ol/extent').Extent;
|
|
392
|
-
addWKT: (wkt: string, wkid: number, tag?: string, location?: boolean,
|
|
393
|
+
addWKT: (wkt: string, wkid: number, tag?: string, location?: boolean, style?: import('ym-gis-2d/entity/IStyle').default) => void;
|
|
393
394
|
addWKTs: (wkts: string[], wkid: number, tag?: string, location?: boolean, style?: import('ym-gis-2d/entity/IStyle').default) => void;
|
|
394
395
|
on: import('ol/Map').MapEventHandler<import('ol/events').EventsKey>;
|
|
395
396
|
once: import('ol/Map').MapEventHandler<import('ol/events').EventsKey>;
|
|
@@ -373,12 +373,13 @@ export declare const MapView: import('../../utils').WithInstall<import('vue').De
|
|
|
373
373
|
};
|
|
374
374
|
getView: () => import('ym-gis-2d/mapView/View').default;
|
|
375
375
|
fitLayer: (layer: import('ym-gis-2d/layers/IBaseLayer').IBaseLayer) => void;
|
|
376
|
+
fitLayerById: (id: string) => void;
|
|
376
377
|
addMapLayer: (layerInfo: import('ym-gis-2d/entity').IMapService) => Promise<import('ol/layer/Base').default>;
|
|
377
378
|
addMapLayers: (layerInfo: import('ym-gis-2d/entity').IMapService[]) => Promise<import('ol/layer/Base').default[]>;
|
|
378
379
|
addLayer: (layer: import('ol/layer/Base').default, fitLayer?: boolean) => void;
|
|
379
380
|
removeLayerById: (id: string) => void;
|
|
380
|
-
|
|
381
|
-
|
|
381
|
+
getLayerById: (id: string) => import('ol/layer/Base').default | undefined;
|
|
382
|
+
getLayerByLayerTag: (layerTag: string) => import('ol/layer/Base').default | undefined;
|
|
382
383
|
getLayersByIds: (ids: string[]) => import('ol/layer/Base').default[];
|
|
383
384
|
getTempLayerById: (id: string) => import('ol/layer').Vector<import('ym-gis-2d/entity/Feature').default>;
|
|
384
385
|
getPointTempLayer: () => import('ol/layer').Vector<import('ym-gis-2d/entity/Feature').default>;
|
|
@@ -388,7 +389,7 @@ export declare const MapView: import('../../utils').WithInstall<import('vue').De
|
|
|
388
389
|
resetViewProjection: (projection: string) => void;
|
|
389
390
|
sortTemLayer: () => void;
|
|
390
391
|
getExtent: () => import('ol/extent').Extent;
|
|
391
|
-
addWKT: (wkt: string, wkid: number, tag?: string, location?: boolean,
|
|
392
|
+
addWKT: (wkt: string, wkid: number, tag?: string, location?: boolean, style?: import('ym-gis-2d/entity/IStyle').default) => void;
|
|
392
393
|
addWKTs: (wkts: string[], wkid: number, tag?: string, location?: boolean, style?: import('ym-gis-2d/entity/IStyle').default) => void;
|
|
393
394
|
on: import('ol/Map').MapEventHandler<import('ol/events').EventsKey>;
|
|
394
395
|
once: import('ol/Map').MapEventHandler<import('ol/events').EventsKey>;
|
|
@@ -380,12 +380,13 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
380
380
|
};
|
|
381
381
|
getView: () => OLView;
|
|
382
382
|
fitLayer: (layer: import('ym-gis-2d/layers/IBaseLayer').IBaseLayer) => void;
|
|
383
|
+
fitLayerById: (id: string) => void;
|
|
383
384
|
addMapLayer: (layerInfo: IMapService) => Promise<import('ol/layer/Base').default>;
|
|
384
385
|
addMapLayers: (layerInfo: IMapService[]) => Promise<import('ol/layer/Base').default[]>;
|
|
385
386
|
addLayer: (layer: import('ol/layer/Base').default, fitLayer?: boolean) => void;
|
|
386
387
|
removeLayerById: (id: string) => void;
|
|
387
|
-
|
|
388
|
-
|
|
388
|
+
getLayerById: (id: string) => import('ol/layer/Base').default | undefined;
|
|
389
|
+
getLayerByLayerTag: (layerTag: string) => import('ol/layer/Base').default | undefined;
|
|
389
390
|
getLayersByIds: (ids: string[]) => import('ol/layer/Base').default[];
|
|
390
391
|
getTempLayerById: (id: string) => import('ol/layer').Vector<import('ym-gis-2d/entity/Feature').default>;
|
|
391
392
|
getPointTempLayer: () => import('ol/layer').Vector<import('ym-gis-2d/entity/Feature').default>;
|
|
@@ -395,7 +396,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
395
396
|
resetViewProjection: (projection: string) => void;
|
|
396
397
|
sortTemLayer: () => void;
|
|
397
398
|
getExtent: () => import('ol/extent').Extent;
|
|
398
|
-
addWKT: (wkt: string, wkid: number, tag?: string, location?: boolean,
|
|
399
|
+
addWKT: (wkt: string, wkid: number, tag?: string, location?: boolean, style?: import('ym-gis-2d/entity/IStyle').default) => void;
|
|
399
400
|
addWKTs: (wkts: string[], wkid: number, tag?: string, location?: boolean, style?: import('ym-gis-2d/entity/IStyle').default) => void;
|
|
400
401
|
on: import('ol/Map').MapEventHandler<import('ol/events').EventsKey>;
|
|
401
402
|
once: import('ol/Map').MapEventHandler<import('ol/events').EventsKey>;
|
|
@@ -376,12 +376,13 @@ export declare const MultiScreen: import('../../utils').WithInstall<import('vue'
|
|
|
376
376
|
};
|
|
377
377
|
getView: () => import('ym-gis-2d/mapView/View').default;
|
|
378
378
|
fitLayer: (layer: import('ym-gis-2d/layers/IBaseLayer').IBaseLayer) => void;
|
|
379
|
+
fitLayerById: (id: string) => void;
|
|
379
380
|
addMapLayer: (layerInfo: import('ym-gis-2d/entity').IMapService) => Promise<import('ol/layer/Base').default>;
|
|
380
381
|
addMapLayers: (layerInfo: import('ym-gis-2d/entity').IMapService[]) => Promise<import('ol/layer/Base').default[]>;
|
|
381
382
|
addLayer: (layer: import('ol/layer/Base').default, fitLayer?: boolean) => void;
|
|
382
383
|
removeLayerById: (id: string) => void;
|
|
383
|
-
|
|
384
|
-
|
|
384
|
+
getLayerById: (id: string) => import('ol/layer/Base').default | undefined;
|
|
385
|
+
getLayerByLayerTag: (layerTag: string) => import('ol/layer/Base').default | undefined;
|
|
385
386
|
getLayersByIds: (ids: string[]) => import('ol/layer/Base').default[];
|
|
386
387
|
getTempLayerById: (id: string) => import('ol/layer').Vector<import('ym-gis-2d/entity/Feature').default>;
|
|
387
388
|
getPointTempLayer: () => import('ol/layer').Vector<import('ym-gis-2d/entity/Feature').default>;
|
|
@@ -391,7 +392,7 @@ export declare const MultiScreen: import('../../utils').WithInstall<import('vue'
|
|
|
391
392
|
resetViewProjection: (projection: string) => void;
|
|
392
393
|
sortTemLayer: () => void;
|
|
393
394
|
getExtent: () => import('ol/extent').Extent;
|
|
394
|
-
addWKT: (wkt: string, wkid: number, tag?: string, location?: boolean,
|
|
395
|
+
addWKT: (wkt: string, wkid: number, tag?: string, location?: boolean, style?: import('ym-gis-2d/entity/IStyle').default) => void;
|
|
395
396
|
addWKTs: (wkts: string[], wkid: number, tag?: string, location?: boolean, style?: import('ym-gis-2d/entity/IStyle').default) => void;
|
|
396
397
|
on: import('ol/Map').MapEventHandler<import('ol/events').EventsKey>;
|
|
397
398
|
once: import('ol/Map').MapEventHandler<import('ol/events').EventsKey>;
|
|
@@ -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-1f9a72ff"]]);
|
|
6
6
|
export {
|
|
7
7
|
_Popup as default
|
|
8
8
|
};
|
|
@@ -161,7 +161,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
161
161
|
let attributesInfos = [];
|
|
162
162
|
for (const key in attributes) {
|
|
163
163
|
const field = fields.find((t) => t.name.toLowerCase() == key.toLowerCase());
|
|
164
|
-
if (!field || field.fieldType == 6) {
|
|
164
|
+
if (!field || field.fieldType == 6 || !field.iDisplay) {
|
|
165
165
|
continue;
|
|
166
166
|
}
|
|
167
167
|
let value = attributes[key];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.identify-popup[data-v-
|
|
1
|
+
.identify-popup[data-v-1f9a72ff] {
|
|
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-1f9a72ff]::after, .identify-popup[data-v-1f9a72ff]::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-1f9a72ff]::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-1f9a72ff]::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-1f9a72ff] {
|
|
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-1f9a72ff] {
|
|
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-1f9a72ff] {
|
|
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-1f9a72ff] {
|
|
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-1f9a72ff] {
|
|
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-1f9a72ff] .el-icon {
|
|
60
60
|
color: var(--system-primary-text-color);
|
|
61
61
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ym-giswidget-2d",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.33",
|
|
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.13"
|
|
14
14
|
}
|
|
15
15
|
}
|