ym-giswidget-2d 1.0.46 → 1.0.48
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/area-measurement/AreaMeasurement.vue.d.ts +150 -0
- package/components/area-measurement/AreaMeasurement.vue.js +192 -0
- package/components/area-measurement/AreaMeasurement.vue2.js +4 -0
- package/components/area-measurement/index.d.ts +150 -0
- package/components/area-measurement/index.js +7 -0
- package/components/distance-measurement/DistanceMeasurement.vue.js +9 -0
- package/components/export/Export.vue.d.ts +1 -1
- package/components/export/Export.vue.js +1 -1
- package/components/export/Export.vue2.js +1 -1
- package/components/export/index.css +1 -1
- package/components/export/index.d.ts +1 -1
- package/components/horizontally-top-toolbar/HorizontallyTopToolbar.vue.js +1 -1
- package/components/horizontally-top-toolbar/HorizontallyTopToolbar.vue2.js +1 -1
- package/components/horizontally-top-toolbar/index.css +10 -9
- package/components/identify/Identify.vue.d.ts +140 -1
- package/components/identify/Identify.vue.js +10 -2
- package/components/identify/index.d.ts +166 -17
- package/components/map-view/MapView.vue.d.ts +4 -4
- package/components/map-view/MapView.vue.js +2 -2
- package/components/map-view/index.d.ts +4 -4
- package/components/mouse-position/MousePositon.vue.d.ts +1 -0
- package/components/mouse-position/MousePositon.vue.js +1 -1
- package/components/mouse-position/MousePositon.vue2.js +4 -2
- package/components/mouse-position/index.css +5 -5
- package/components/mouse-position/index.d.ts +1 -0
- package/components/multi-screen/MultiScreen.vue.d.ts +2 -2
- package/components/multi-screen/index.d.ts +2 -2
- package/components/popup/Popup.vue.d.ts +288 -1
- package/components/popup/Popup.vue.js +1 -1
- package/components/popup/Popup.vue2.js +7 -3
- package/components/popup/index.css +10 -10
- package/components/popup/index.d.ts +288 -138
- package/components/scale-line/ScaleLine.vue.d.ts +10 -0
- package/components/scale-line/ScaleLine.vue.js +1 -1
- package/components/scale-line/ScaleLine.vue2.js +7 -7
- package/components/scale-line/index.css +5 -5
- package/components/scale-line/index.d.ts +15 -0
- package/components/select/Select.vue.js +1 -1
- package/components/select/index.d.ts +12 -12
- package/index.d.ts +1 -0
- package/index.js +2 -0
- package/package.json +2 -2
|
@@ -2,12 +2,293 @@ import { default as Feature } from 'ym-gis-2d/entity/Feature';
|
|
|
2
2
|
import { default as OLMap } from 'ym-gis-2d/mapView/Map';
|
|
3
3
|
import { Coordinate } from 'ol/coordinate';
|
|
4
4
|
import { nextTick } from 'vue';
|
|
5
|
+
import { Geometry } from 'ol/geom';
|
|
5
6
|
type __VLS_Props = {
|
|
6
7
|
map: OLMap;
|
|
7
8
|
features: Feature[];
|
|
8
9
|
postion: Coordinate;
|
|
9
10
|
};
|
|
10
|
-
declare
|
|
11
|
+
declare function __VLS_template(): {
|
|
12
|
+
attrs: Partial<{}>;
|
|
13
|
+
slots: {
|
|
14
|
+
footer?(_: {
|
|
15
|
+
feature: {
|
|
16
|
+
isSelected?: boolean | undefined;
|
|
17
|
+
fromType?: "draw" | "import" | "cut" | "copy" | "union" | "identify" | undefined;
|
|
18
|
+
layerId?: string | undefined;
|
|
19
|
+
tag?: string | undefined;
|
|
20
|
+
tempLayer?: {
|
|
21
|
+
getRenderBuffer: () => number | undefined;
|
|
22
|
+
getRenderOrder: () => (arg0: import('ol').default, arg1: import('ol').default) => number | null | undefined;
|
|
23
|
+
getStyle: () => import('ol/style/Style').StyleLike | import('ol/style/flat').FlatStyleLike | null | undefined;
|
|
24
|
+
getStyleFunction: () => import('ol/style/Style').StyleFunction | undefined;
|
|
25
|
+
getUpdateWhileAnimating: () => boolean;
|
|
26
|
+
getUpdateWhileInteracting: () => boolean;
|
|
27
|
+
setRenderOrder: (renderOrder: import('ol/render').OrderFunction | null | undefined) => void;
|
|
28
|
+
setStyle: (style?: import('ol/style/Style').StyleLike | import('ol/style/flat').FlatStyleLike | null | undefined) => void;
|
|
29
|
+
on: import('ol/layer/Layer').LayerOnSignature<import('ol/events').EventsKey>;
|
|
30
|
+
once: import('ol/layer/Layer').LayerOnSignature<import('ol/events').EventsKey>;
|
|
31
|
+
un: import('ol/layer/Layer').LayerOnSignature<void>;
|
|
32
|
+
render: (frameState: import('ol/Map').FrameState | null, target: HTMLElement) => HTMLElement | null;
|
|
33
|
+
getSource: () => import('ol/source').Vector<import('ol').Feature<Geometry>> | null;
|
|
34
|
+
getRenderSource: () => import('ol/source').Vector<import('ol').Feature<Geometry>> | null;
|
|
35
|
+
getFeatures: (pixel: import('ol/pixel').Pixel) => Promise<Array<import('ol/Feature').FeatureLike>>;
|
|
36
|
+
getData: (pixel: import('ol/pixel').Pixel) => Uint8ClampedArray | Uint8Array | Float32Array | DataView | null;
|
|
37
|
+
isVisible: (view?: import('ol').View | import('ol/View').ViewStateLayerStateExtent | undefined) => boolean;
|
|
38
|
+
getAttributions: (view?: import('ol').View | import('ol/View').ViewStateLayerStateExtent | undefined) => Array<string>;
|
|
39
|
+
unrender: () => void;
|
|
40
|
+
getDeclutter: () => string;
|
|
41
|
+
renderDeclutter: (frameState: import('ol/Map').FrameState, layerState: import('ol/layer/Layer').State) => void;
|
|
42
|
+
renderDeferred: (frameState: import('ol/Map').FrameState) => void;
|
|
43
|
+
setMapInternal: (map: import('ol').default | null) => void;
|
|
44
|
+
getMapInternal: () => import('ol').default | null;
|
|
45
|
+
setMap: (map: import('ol').default | null) => void;
|
|
46
|
+
setSource: (source: import('ol/source').Vector<import('ol').Feature<Geometry>> | null) => void;
|
|
47
|
+
getRenderer: () => import('ol/renderer/canvas/VectorLayer').default | null;
|
|
48
|
+
hasRenderer: () => boolean;
|
|
49
|
+
getBackground: () => import('ol/layer/Base').BackgroundColor | false;
|
|
50
|
+
getClassName: () => string;
|
|
51
|
+
getLayerState: (managed?: boolean | undefined) => import('ol/layer/Layer').State;
|
|
52
|
+
getLayersArray: (array?: import('ol/layer').default<import('ol/source').default, import('ol/renderer/Layer').default<any>>[] | undefined) => Array<import('ol/layer').default>;
|
|
53
|
+
getLayerStatesArray: (states?: import('ol/layer/Layer').State[] | undefined) => Array<import('ol/layer/Layer').State>;
|
|
54
|
+
getExtent: () => import('ol/extent').Extent | undefined;
|
|
55
|
+
getMaxResolution: () => number;
|
|
56
|
+
getMinResolution: () => number;
|
|
57
|
+
getMinZoom: () => number;
|
|
58
|
+
getMaxZoom: () => number;
|
|
59
|
+
getOpacity: () => number;
|
|
60
|
+
getSourceState: () => import('ol/source/Source').State;
|
|
61
|
+
getVisible: () => boolean;
|
|
62
|
+
getZIndex: () => number | undefined;
|
|
63
|
+
setBackground: (background?: import('ol/layer/Base').BackgroundColor | undefined) => void;
|
|
64
|
+
setExtent: (extent: import('ol/extent').Extent | undefined) => void;
|
|
65
|
+
setMaxResolution: (maxResolution: number) => void;
|
|
66
|
+
setMinResolution: (minResolution: number) => void;
|
|
67
|
+
setMaxZoom: (maxZoom: number) => void;
|
|
68
|
+
setMinZoom: (minZoom: number) => void;
|
|
69
|
+
setOpacity: (opacity: number) => void;
|
|
70
|
+
setVisible: (visible: boolean) => void;
|
|
71
|
+
setZIndex: (zindex: number) => void;
|
|
72
|
+
get: (key: string) => any;
|
|
73
|
+
getKeys: () => Array<string>;
|
|
74
|
+
getProperties: () => {
|
|
75
|
+
[x: string]: any;
|
|
76
|
+
};
|
|
77
|
+
getPropertiesInternal: () => {
|
|
78
|
+
[x: string]: any;
|
|
79
|
+
} | null;
|
|
80
|
+
hasProperties: () => boolean;
|
|
81
|
+
notify: (key: string, oldValue: any) => void;
|
|
82
|
+
addChangeListener: (key: string, listener: import('ol/events').Listener) => void;
|
|
83
|
+
removeChangeListener: (key: string, listener: import('ol/events').Listener) => void;
|
|
84
|
+
set: (key: string, value: any, silent?: boolean | undefined) => void;
|
|
85
|
+
setProperties: (values: {
|
|
86
|
+
[x: string]: any;
|
|
87
|
+
}, silent?: boolean | undefined) => void;
|
|
88
|
+
unset: (key: string, silent?: boolean | undefined) => void;
|
|
89
|
+
changed: () => void;
|
|
90
|
+
getRevision: () => number;
|
|
91
|
+
addEventListener: (type: string, listener: import('ol/events').Listener) => void;
|
|
92
|
+
dispatchEvent: (event: import('ol/events/Event').default | string) => boolean | undefined;
|
|
93
|
+
getListeners: (type: string) => Array<import('ol/events').Listener> | undefined;
|
|
94
|
+
hasListener: (type?: string | undefined) => boolean;
|
|
95
|
+
removeEventListener: (type: string, listener: import('ol/events').Listener) => void;
|
|
96
|
+
dispose: () => void;
|
|
97
|
+
} | undefined;
|
|
98
|
+
on: import('ol/Feature').FeatureOnSignature<import('ol/events').EventsKey>;
|
|
99
|
+
once: import('ol/Feature').FeatureOnSignature<import('ol/events').EventsKey>;
|
|
100
|
+
un: import('ol/Feature').FeatureOnSignature<void>;
|
|
101
|
+
clone: () => import('ol').Feature<Geometry>;
|
|
102
|
+
getGeometry: () => Geometry | undefined;
|
|
103
|
+
getId: () => number | string | undefined;
|
|
104
|
+
getGeometryName: () => string;
|
|
105
|
+
getStyle: () => import('ol/style/Style').StyleLike | undefined;
|
|
106
|
+
getStyleFunction: () => import('ol/style/Style').StyleFunction | undefined;
|
|
107
|
+
setGeometry: (geometry: Geometry | undefined) => void;
|
|
108
|
+
setStyle: (style?: import('ol/style/Style').StyleLike | undefined) => void;
|
|
109
|
+
setId: (id: number | string | undefined) => void;
|
|
110
|
+
setGeometryName: (name: string) => void;
|
|
111
|
+
get: (key: string) => any;
|
|
112
|
+
getKeys: () => Array<string>;
|
|
113
|
+
getProperties: () => {
|
|
114
|
+
[x: string]: any;
|
|
115
|
+
};
|
|
116
|
+
getPropertiesInternal: () => {
|
|
117
|
+
[x: string]: any;
|
|
118
|
+
} | null;
|
|
119
|
+
hasProperties: () => boolean;
|
|
120
|
+
notify: (key: string, oldValue: any) => void;
|
|
121
|
+
addChangeListener: (key: string, listener: import('ol/events').Listener) => void;
|
|
122
|
+
removeChangeListener: (key: string, listener: import('ol/events').Listener) => void;
|
|
123
|
+
set: (key: string, value: any, silent?: boolean | undefined) => void;
|
|
124
|
+
setProperties: (values: {
|
|
125
|
+
[x: string]: any;
|
|
126
|
+
}, silent?: boolean | undefined) => void;
|
|
127
|
+
unset: (key: string, silent?: boolean | undefined) => void;
|
|
128
|
+
changed: () => void;
|
|
129
|
+
getRevision: () => number;
|
|
130
|
+
addEventListener: (type: string, listener: import('ol/events').Listener) => void;
|
|
131
|
+
dispatchEvent: (event: import('ol/events/Event').default | string) => boolean | undefined;
|
|
132
|
+
getListeners: (type: string) => Array<import('ol/events').Listener> | undefined;
|
|
133
|
+
hasListener: (type?: string | undefined) => boolean;
|
|
134
|
+
removeEventListener: (type: string, listener: import('ol/events').Listener) => void;
|
|
135
|
+
dispose: () => void;
|
|
136
|
+
} | undefined;
|
|
137
|
+
layerName: string | undefined;
|
|
138
|
+
}): any;
|
|
139
|
+
};
|
|
140
|
+
refs: {
|
|
141
|
+
popupDom: ({
|
|
142
|
+
$: import('vue').ComponentInternalInstance;
|
|
143
|
+
$data: {};
|
|
144
|
+
$props: {
|
|
145
|
+
readonly title?: string | undefined;
|
|
146
|
+
readonly width?: number | undefined;
|
|
147
|
+
readonly height?: number | undefined;
|
|
148
|
+
readonly minWidth?: number | undefined;
|
|
149
|
+
readonly minHeight?: number | undefined;
|
|
150
|
+
readonly resizable?: boolean | undefined;
|
|
151
|
+
readonly showClose?: boolean | undefined;
|
|
152
|
+
readonly showMinimize?: boolean | undefined;
|
|
153
|
+
readonly showMaximize?: boolean | undefined;
|
|
154
|
+
readonly showDock?: boolean | undefined;
|
|
155
|
+
readonly drag?: boolean | undefined;
|
|
156
|
+
readonly showOk?: boolean | undefined;
|
|
157
|
+
readonly showCancel?: boolean | undefined;
|
|
158
|
+
readonly okText?: string | undefined;
|
|
159
|
+
readonly cancelText?: string | undefined;
|
|
160
|
+
readonly onClose?: ((...args: any[]) => any) | undefined;
|
|
161
|
+
readonly onResize?: ((...args: any[]) => any) | undefined;
|
|
162
|
+
readonly onMove?: ((...args: any[]) => any) | undefined;
|
|
163
|
+
readonly onOk?: ((...args: any[]) => any) | undefined;
|
|
164
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
165
|
+
$attrs: {
|
|
166
|
+
[x: string]: unknown;
|
|
167
|
+
};
|
|
168
|
+
$refs: {
|
|
169
|
+
[x: string]: unknown;
|
|
170
|
+
} & {
|
|
171
|
+
panelRef: HTMLDivElement;
|
|
172
|
+
};
|
|
173
|
+
$slots: Readonly<{
|
|
174
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
175
|
+
}>;
|
|
176
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
177
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
178
|
+
$host: Element | null;
|
|
179
|
+
$emit: ((event: "close", ...args: any[]) => void) & ((event: "resize", ...args: any[]) => void) & ((event: "move", ...args: any[]) => void) & ((event: "ok", ...args: any[]) => void);
|
|
180
|
+
$el: HTMLDivElement;
|
|
181
|
+
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
182
|
+
title?: string;
|
|
183
|
+
width?: number;
|
|
184
|
+
height?: number;
|
|
185
|
+
minWidth?: number;
|
|
186
|
+
minHeight?: number;
|
|
187
|
+
resizable?: boolean;
|
|
188
|
+
showClose?: boolean;
|
|
189
|
+
showMinimize?: boolean;
|
|
190
|
+
showMaximize?: boolean;
|
|
191
|
+
showDock?: boolean;
|
|
192
|
+
drag?: boolean;
|
|
193
|
+
showOk?: boolean;
|
|
194
|
+
showCancel?: boolean;
|
|
195
|
+
okText?: string;
|
|
196
|
+
cancelText?: string;
|
|
197
|
+
}> & Readonly<{
|
|
198
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
199
|
+
onResize?: ((...args: any[]) => any) | undefined;
|
|
200
|
+
onMove?: ((...args: any[]) => any) | undefined;
|
|
201
|
+
onOk?: ((...args: any[]) => any) | undefined;
|
|
202
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
203
|
+
close: (...args: any[]) => void;
|
|
204
|
+
resize: (...args: any[]) => void;
|
|
205
|
+
move: (...args: any[]) => void;
|
|
206
|
+
ok: (...args: any[]) => void;
|
|
207
|
+
}, string, {
|
|
208
|
+
title: string;
|
|
209
|
+
showClose: boolean;
|
|
210
|
+
drag: boolean;
|
|
211
|
+
minWidth: number;
|
|
212
|
+
minHeight: number;
|
|
213
|
+
resizable: boolean;
|
|
214
|
+
showMinimize: boolean;
|
|
215
|
+
showMaximize: boolean;
|
|
216
|
+
showDock: boolean;
|
|
217
|
+
showOk: boolean;
|
|
218
|
+
showCancel: boolean;
|
|
219
|
+
okText: string;
|
|
220
|
+
cancelText: string;
|
|
221
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
222
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
223
|
+
created?: (() => void) | (() => void)[];
|
|
224
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
225
|
+
mounted?: (() => void) | (() => void)[];
|
|
226
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
227
|
+
updated?: (() => void) | (() => void)[];
|
|
228
|
+
activated?: (() => void) | (() => void)[];
|
|
229
|
+
deactivated?: (() => void) | (() => void)[];
|
|
230
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
231
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
232
|
+
destroyed?: (() => void) | (() => void)[];
|
|
233
|
+
unmounted?: (() => void) | (() => void)[];
|
|
234
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
235
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
236
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
237
|
+
};
|
|
238
|
+
$forceUpdate: () => void;
|
|
239
|
+
$nextTick: typeof nextTick;
|
|
240
|
+
$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;
|
|
241
|
+
} & Readonly<{
|
|
242
|
+
title: string;
|
|
243
|
+
showClose: boolean;
|
|
244
|
+
drag: boolean;
|
|
245
|
+
minWidth: number;
|
|
246
|
+
minHeight: number;
|
|
247
|
+
resizable: boolean;
|
|
248
|
+
showMinimize: boolean;
|
|
249
|
+
showMaximize: boolean;
|
|
250
|
+
showDock: boolean;
|
|
251
|
+
showOk: boolean;
|
|
252
|
+
showCancel: boolean;
|
|
253
|
+
okText: string;
|
|
254
|
+
cancelText: string;
|
|
255
|
+
}> & Omit<Readonly<{
|
|
256
|
+
title?: string;
|
|
257
|
+
width?: number;
|
|
258
|
+
height?: number;
|
|
259
|
+
minWidth?: number;
|
|
260
|
+
minHeight?: number;
|
|
261
|
+
resizable?: boolean;
|
|
262
|
+
showClose?: boolean;
|
|
263
|
+
showMinimize?: boolean;
|
|
264
|
+
showMaximize?: boolean;
|
|
265
|
+
showDock?: boolean;
|
|
266
|
+
drag?: boolean;
|
|
267
|
+
showOk?: boolean;
|
|
268
|
+
showCancel?: boolean;
|
|
269
|
+
okText?: string;
|
|
270
|
+
cancelText?: string;
|
|
271
|
+
}> & Readonly<{
|
|
272
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
273
|
+
onResize?: ((...args: any[]) => any) | undefined;
|
|
274
|
+
onMove?: ((...args: any[]) => any) | undefined;
|
|
275
|
+
onOk?: ((...args: any[]) => any) | undefined;
|
|
276
|
+
}>, "title" | "showClose" | "drag" | "minWidth" | "minHeight" | "resizable" | "showMinimize" | "showMaximize" | "showDock" | "showOk" | "showCancel" | "okText" | "cancelText"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
277
|
+
$slots: {
|
|
278
|
+
header?(_: {}): any;
|
|
279
|
+
default?(_: {}): any;
|
|
280
|
+
footer?(_: {}): any;
|
|
281
|
+
};
|
|
282
|
+
} & {
|
|
283
|
+
$props: {
|
|
284
|
+
onClick?: (...args: any[]) => void;
|
|
285
|
+
};
|
|
286
|
+
}) | null;
|
|
287
|
+
};
|
|
288
|
+
rootEl: any;
|
|
289
|
+
};
|
|
290
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
291
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
292
|
close: (...args: any[]) => void;
|
|
12
293
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
13
294
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
@@ -159,4 +440,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
159
440
|
};
|
|
160
441
|
}) | null;
|
|
161
442
|
}, any>;
|
|
443
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
162
444
|
export default _default;
|
|
445
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
446
|
+
new (): {
|
|
447
|
+
$slots: S;
|
|
448
|
+
};
|
|
449
|
+
};
|
|
@@ -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-a382b570"]]);
|
|
6
6
|
export {
|
|
7
7
|
_Popup as default
|
|
8
8
|
};
|
|
@@ -5,7 +5,7 @@ import "element-plus/es/components/table/style/css";
|
|
|
5
5
|
import "element-plus/es/components/table-column/style/css";
|
|
6
6
|
import "element-plus/es/components/select/style/css";
|
|
7
7
|
import "element-plus/es/components/option/style/css";
|
|
8
|
-
import { defineComponent, reactive, ref, watch, onMounted, onUnmounted, withDirectives, createBlock, openBlock, unref, withCtx, createElementVNode, createVNode, toDisplayString, createElementBlock, Fragment, renderList, vShow } from "vue";
|
|
8
|
+
import { defineComponent, reactive, ref, watch, onMounted, onUnmounted, withDirectives, createBlock, openBlock, unref, withCtx, createElementVNode, createVNode, renderSlot, toDisplayString, createElementBlock, Fragment, renderList, vShow } from "vue";
|
|
9
9
|
import { DraggablePanel } from "../../panel/index.js";
|
|
10
10
|
import Overlay from "ol/Overlay";
|
|
11
11
|
import { getLayerFields } from "../../http/LayerField.js";
|
|
@@ -211,7 +211,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
211
211
|
}, 8, ["modelValue"])
|
|
212
212
|
]),
|
|
213
213
|
default: withCtx(() => {
|
|
214
|
-
var _a;
|
|
214
|
+
var _a, _b, _c;
|
|
215
215
|
return [
|
|
216
216
|
createElementVNode("div", _hoisted_1, [
|
|
217
217
|
createVNode(_component_el_table, {
|
|
@@ -241,6 +241,10 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
241
241
|
]),
|
|
242
242
|
_: 1
|
|
243
243
|
}, 8, ["data"]),
|
|
244
|
+
renderSlot(_ctx.$slots, "footer", {
|
|
245
|
+
feature: (_b = unref(reactiveValue).currentLayer) == null ? void 0 : _b.features[unref(reactiveValue).currentPage - 1].feature,
|
|
246
|
+
layerName: (_c = unref(reactiveValue).currentLayer) == null ? void 0 : _c.title
|
|
247
|
+
}, void 0, true),
|
|
244
248
|
createElementVNode("div", _hoisted_2, [
|
|
245
249
|
createVNode(_component_el_pagination, {
|
|
246
250
|
"current-page": unref(reactiveValue).currentPage,
|
|
@@ -254,7 +258,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
254
258
|
])
|
|
255
259
|
];
|
|
256
260
|
}),
|
|
257
|
-
_:
|
|
261
|
+
_: 3
|
|
258
262
|
}, 512)), [
|
|
259
263
|
[vShow, unref(reactiveValue).visible]
|
|
260
264
|
]);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.identify-popup[data-v-
|
|
1
|
+
.identify-popup[data-v-a382b570] {
|
|
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-a382b570]::after, .identify-popup[data-v-a382b570]::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-a382b570]::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-a382b570]::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-a382b570] {
|
|
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-a382b570] {
|
|
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-a382b570] {
|
|
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-a382b570] {
|
|
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-a382b570] {
|
|
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-a382b570] .el-icon {
|
|
60
60
|
color: var(--system-primary-text-color);
|
|
61
61
|
}
|