vue-openlayers-plugin 1.1.13 → 1.1.14
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 +209 -0
- package/lib/{BasemapPanel-a8d7373d.mjs → BasemapPanel-d022a31a.mjs} +1 -1
- package/lib/{CoordinateLocationDialog-274aff1a.mjs → CoordinateLocationDialog-6cdf239b.mjs} +1 -1
- package/lib/{MapPrintDialog-97054260.mjs → FilterPanel-de00b336.mjs} +1 -1
- package/lib/{FilterPanel-ccdaaac3.mjs → LayerPanel-1a0456a4.mjs} +1 -1
- package/lib/{LayerPanel-c716b7cc.mjs → MapPrintDialog-c65f685b.mjs} +1 -1
- package/lib/{MeasurementDialog-7c08ba58.mjs → MeasurementDialog-44599074.mjs} +1 -1
- package/lib/{MyMarkersDialog-89bd594e.mjs → MyMarkersDialog-dd288574.mjs} +1 -1
- package/lib/{QuadCompareDialog-78dd2cf6.mjs → QuadCompareDialog-2cd17881.mjs} +1 -1
- package/lib/{RegionNavigationDialog-4b7b4e5f.mjs → RegionNavigationDialog-b1cdc5f9.mjs} +1 -1
- package/lib/{SplitCompareDialog-b51b55c1.mjs → SplitCompareDialog-6dd0fb71.mjs} +1 -1
- package/lib/{SwipeCompareDialog-2b89b65e.mjs → SwipeCompareDialog-dfae0afd.mjs} +1 -1
- package/lib/{ViewBookmarksDialog-7ee33d4e.mjs → ViewBookmarksDialog-2a6bc942.mjs} +1 -1
- package/lib/{index-3699244d.mjs → index-199c60c9.mjs} +1 -1
- package/lib/{index-98c677b7.mjs → index-e868c4e2.mjs} +504 -48
- package/lib/{index.es-e3be4489.mjs → index.es-560c236e.mjs} +1 -1
- package/lib/index.esm.js +1 -1
- package/lib/index.umd.js +491 -35
- package/lib/style.css +5 -5
- package/package.json +1 -1
- package/types/components/OlDialogs/LayerPanel.vue.d.ts +188 -0
- package/types/components/OlDialogs/LayerPanel.vue.d.ts.map +1 -1
- package/types/components/OlMap.vue.d.ts +381 -0
- package/types/components/OlMap.vue.d.ts.map +1 -1
- package/types/components/OlMapContainer.vue.d.ts +1 -0
- package/types/components/OlMapContainer.vue.d.ts.map +1 -1
- package/types/core/LayerManager.d.ts +5 -0
- package/types/core/LayerManager.d.ts.map +1 -1
- package/types/core/layers/GeoJSONLayerHandler.d.ts +30 -2
- package/types/core/layers/GeoJSONLayerHandler.d.ts.map +1 -1
- package/types/core/layers/interfaces.d.ts +5 -0
- package/types/core/layers/interfaces.d.ts.map +1 -1
- package/types/lowcode-entry.d.ts +391 -0
- package/types/lowcode-entry.d.ts.map +1 -1
- package/types/types/map.d.ts +60 -0
- package/types/types/map.d.ts.map +1 -1
|
@@ -27,6 +27,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
27
27
|
name: string;
|
|
28
28
|
type: string;
|
|
29
29
|
url?: string;
|
|
30
|
+
method?: import('../../types').GeoJSONRequestMethod;
|
|
31
|
+
headers?: Record<string, string>;
|
|
32
|
+
body?: string | Record<string, any>;
|
|
33
|
+
dataPath?: string;
|
|
30
34
|
visible: boolean;
|
|
31
35
|
opacity: number;
|
|
32
36
|
zIndex: number;
|
|
@@ -67,6 +71,51 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
67
71
|
autoFetchMetadata?: boolean;
|
|
68
72
|
projection?: string;
|
|
69
73
|
projectionDefinition?: string;
|
|
74
|
+
geojsonConfig?: {
|
|
75
|
+
data?: string | object;
|
|
76
|
+
request?: {
|
|
77
|
+
url?: string;
|
|
78
|
+
method?: import('../../types').GeoJSONRequestMethod;
|
|
79
|
+
headers?: Record<string, string>;
|
|
80
|
+
params?: Record<string, any>;
|
|
81
|
+
body?: string | Record<string, any>;
|
|
82
|
+
dataPath?: string;
|
|
83
|
+
requestInterceptor?: (request: {
|
|
84
|
+
url: string;
|
|
85
|
+
method: import('../../types').GeoJSONRequestMethod;
|
|
86
|
+
headers: Record<string, string>;
|
|
87
|
+
params: Record<string, any>;
|
|
88
|
+
body?: string | Record<string, any>;
|
|
89
|
+
}, context: import('../../types').GeoJSONRequestContext) => {
|
|
90
|
+
url?: string;
|
|
91
|
+
method?: import('../../types').GeoJSONRequestMethod;
|
|
92
|
+
headers?: Record<string, string>;
|
|
93
|
+
params?: Record<string, any>;
|
|
94
|
+
body?: string | Record<string, any>;
|
|
95
|
+
} | Promise<{
|
|
96
|
+
url?: string;
|
|
97
|
+
method?: import('../../types').GeoJSONRequestMethod;
|
|
98
|
+
headers?: Record<string, string>;
|
|
99
|
+
params?: Record<string, any>;
|
|
100
|
+
body?: string | Record<string, any>;
|
|
101
|
+
}>;
|
|
102
|
+
responseInterceptor?: (response: any, context: import('../../types').GeoJSONRequestContext) => any;
|
|
103
|
+
responseParser?: (response: any, context: import('../../types').GeoJSONRequestContext) => any;
|
|
104
|
+
};
|
|
105
|
+
dataPath?: string;
|
|
106
|
+
refresh?: {
|
|
107
|
+
enabled?: boolean;
|
|
108
|
+
interval?: number;
|
|
109
|
+
onMoveEnd?: boolean;
|
|
110
|
+
onZoomEnd?: boolean;
|
|
111
|
+
debounce?: number;
|
|
112
|
+
useExtent?: boolean;
|
|
113
|
+
extentParamName?: string;
|
|
114
|
+
extentTarget?: "body" | "params";
|
|
115
|
+
extentProjection?: string;
|
|
116
|
+
};
|
|
117
|
+
clearOnError?: boolean;
|
|
118
|
+
};
|
|
70
119
|
config?: {
|
|
71
120
|
wms?: {
|
|
72
121
|
layers: string;
|
|
@@ -155,6 +204,51 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
155
204
|
value: any;
|
|
156
205
|
}[];
|
|
157
206
|
};
|
|
207
|
+
geojson?: {
|
|
208
|
+
data?: string | object;
|
|
209
|
+
request?: {
|
|
210
|
+
url?: string;
|
|
211
|
+
method?: import('../../types').GeoJSONRequestMethod;
|
|
212
|
+
headers?: Record<string, string>;
|
|
213
|
+
params?: Record<string, any>;
|
|
214
|
+
body?: string | Record<string, any>;
|
|
215
|
+
dataPath?: string;
|
|
216
|
+
requestInterceptor?: (request: {
|
|
217
|
+
url: string;
|
|
218
|
+
method: import('../../types').GeoJSONRequestMethod;
|
|
219
|
+
headers: Record<string, string>;
|
|
220
|
+
params: Record<string, any>;
|
|
221
|
+
body?: string | Record<string, any>;
|
|
222
|
+
}, context: import('../../types').GeoJSONRequestContext) => {
|
|
223
|
+
url?: string;
|
|
224
|
+
method?: import('../../types').GeoJSONRequestMethod;
|
|
225
|
+
headers?: Record<string, string>;
|
|
226
|
+
params?: Record<string, any>;
|
|
227
|
+
body?: string | Record<string, any>;
|
|
228
|
+
} | Promise<{
|
|
229
|
+
url?: string;
|
|
230
|
+
method?: import('../../types').GeoJSONRequestMethod;
|
|
231
|
+
headers?: Record<string, string>;
|
|
232
|
+
params?: Record<string, any>;
|
|
233
|
+
body?: string | Record<string, any>;
|
|
234
|
+
}>;
|
|
235
|
+
responseInterceptor?: (response: any, context: import('../../types').GeoJSONRequestContext) => any;
|
|
236
|
+
responseParser?: (response: any, context: import('../../types').GeoJSONRequestContext) => any;
|
|
237
|
+
};
|
|
238
|
+
dataPath?: string;
|
|
239
|
+
refresh?: {
|
|
240
|
+
enabled?: boolean;
|
|
241
|
+
interval?: number;
|
|
242
|
+
onMoveEnd?: boolean;
|
|
243
|
+
onZoomEnd?: boolean;
|
|
244
|
+
debounce?: number;
|
|
245
|
+
useExtent?: boolean;
|
|
246
|
+
extentParamName?: string;
|
|
247
|
+
extentTarget?: "body" | "params";
|
|
248
|
+
extentProjection?: string;
|
|
249
|
+
};
|
|
250
|
+
clearOnError?: boolean;
|
|
251
|
+
};
|
|
158
252
|
};
|
|
159
253
|
filterLogic?: import('../../types').FilterLogic;
|
|
160
254
|
wmsLayers?: string;
|
|
@@ -803,6 +897,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
803
897
|
name: string;
|
|
804
898
|
type: string;
|
|
805
899
|
url?: string;
|
|
900
|
+
method?: import('../../types').GeoJSONRequestMethod;
|
|
901
|
+
headers?: Record<string, string>;
|
|
902
|
+
body?: string | Record<string, any>;
|
|
903
|
+
dataPath?: string;
|
|
806
904
|
visible: boolean;
|
|
807
905
|
opacity: number;
|
|
808
906
|
zIndex: number;
|
|
@@ -843,6 +941,51 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
843
941
|
autoFetchMetadata?: boolean;
|
|
844
942
|
projection?: string;
|
|
845
943
|
projectionDefinition?: string;
|
|
944
|
+
geojsonConfig?: {
|
|
945
|
+
data?: string | object;
|
|
946
|
+
request?: {
|
|
947
|
+
url?: string;
|
|
948
|
+
method?: import('../../types').GeoJSONRequestMethod;
|
|
949
|
+
headers?: Record<string, string>;
|
|
950
|
+
params?: Record<string, any>;
|
|
951
|
+
body?: string | Record<string, any>;
|
|
952
|
+
dataPath?: string;
|
|
953
|
+
requestInterceptor?: (request: {
|
|
954
|
+
url: string;
|
|
955
|
+
method: import('../../types').GeoJSONRequestMethod;
|
|
956
|
+
headers: Record<string, string>;
|
|
957
|
+
params: Record<string, any>;
|
|
958
|
+
body?: string | Record<string, any>;
|
|
959
|
+
}, context: import('../../types').GeoJSONRequestContext) => {
|
|
960
|
+
url?: string;
|
|
961
|
+
method?: import('../../types').GeoJSONRequestMethod;
|
|
962
|
+
headers?: Record<string, string>;
|
|
963
|
+
params?: Record<string, any>;
|
|
964
|
+
body?: string | Record<string, any>;
|
|
965
|
+
} | Promise<{
|
|
966
|
+
url?: string;
|
|
967
|
+
method?: import('../../types').GeoJSONRequestMethod;
|
|
968
|
+
headers?: Record<string, string>;
|
|
969
|
+
params?: Record<string, any>;
|
|
970
|
+
body?: string | Record<string, any>;
|
|
971
|
+
}>;
|
|
972
|
+
responseInterceptor?: (response: any, context: import('../../types').GeoJSONRequestContext) => any;
|
|
973
|
+
responseParser?: (response: any, context: import('../../types').GeoJSONRequestContext) => any;
|
|
974
|
+
};
|
|
975
|
+
dataPath?: string;
|
|
976
|
+
refresh?: {
|
|
977
|
+
enabled?: boolean;
|
|
978
|
+
interval?: number;
|
|
979
|
+
onMoveEnd?: boolean;
|
|
980
|
+
onZoomEnd?: boolean;
|
|
981
|
+
debounce?: number;
|
|
982
|
+
useExtent?: boolean;
|
|
983
|
+
extentParamName?: string;
|
|
984
|
+
extentTarget?: "body" | "params";
|
|
985
|
+
extentProjection?: string;
|
|
986
|
+
};
|
|
987
|
+
clearOnError?: boolean;
|
|
988
|
+
};
|
|
846
989
|
config?: {
|
|
847
990
|
wms?: {
|
|
848
991
|
layers: string;
|
|
@@ -931,6 +1074,51 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
931
1074
|
value: any;
|
|
932
1075
|
}[];
|
|
933
1076
|
};
|
|
1077
|
+
geojson?: {
|
|
1078
|
+
data?: string | object;
|
|
1079
|
+
request?: {
|
|
1080
|
+
url?: string;
|
|
1081
|
+
method?: import('../../types').GeoJSONRequestMethod;
|
|
1082
|
+
headers?: Record<string, string>;
|
|
1083
|
+
params?: Record<string, any>;
|
|
1084
|
+
body?: string | Record<string, any>;
|
|
1085
|
+
dataPath?: string;
|
|
1086
|
+
requestInterceptor?: (request: {
|
|
1087
|
+
url: string;
|
|
1088
|
+
method: import('../../types').GeoJSONRequestMethod;
|
|
1089
|
+
headers: Record<string, string>;
|
|
1090
|
+
params: Record<string, any>;
|
|
1091
|
+
body?: string | Record<string, any>;
|
|
1092
|
+
}, context: import('../../types').GeoJSONRequestContext) => {
|
|
1093
|
+
url?: string;
|
|
1094
|
+
method?: import('../../types').GeoJSONRequestMethod;
|
|
1095
|
+
headers?: Record<string, string>;
|
|
1096
|
+
params?: Record<string, any>;
|
|
1097
|
+
body?: string | Record<string, any>;
|
|
1098
|
+
} | Promise<{
|
|
1099
|
+
url?: string;
|
|
1100
|
+
method?: import('../../types').GeoJSONRequestMethod;
|
|
1101
|
+
headers?: Record<string, string>;
|
|
1102
|
+
params?: Record<string, any>;
|
|
1103
|
+
body?: string | Record<string, any>;
|
|
1104
|
+
}>;
|
|
1105
|
+
responseInterceptor?: (response: any, context: import('../../types').GeoJSONRequestContext) => any;
|
|
1106
|
+
responseParser?: (response: any, context: import('../../types').GeoJSONRequestContext) => any;
|
|
1107
|
+
};
|
|
1108
|
+
dataPath?: string;
|
|
1109
|
+
refresh?: {
|
|
1110
|
+
enabled?: boolean;
|
|
1111
|
+
interval?: number;
|
|
1112
|
+
onMoveEnd?: boolean;
|
|
1113
|
+
onZoomEnd?: boolean;
|
|
1114
|
+
debounce?: number;
|
|
1115
|
+
useExtent?: boolean;
|
|
1116
|
+
extentParamName?: string;
|
|
1117
|
+
extentTarget?: "body" | "params";
|
|
1118
|
+
extentProjection?: string;
|
|
1119
|
+
};
|
|
1120
|
+
clearOnError?: boolean;
|
|
1121
|
+
};
|
|
934
1122
|
};
|
|
935
1123
|
filterLogic?: import('../../types').FilterLogic;
|
|
936
1124
|
wmsLayers?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LayerPanel.vue.d.ts","sourceRoot":"","sources":["../../../src/components/OlDialogs/LayerPanel.vue"],"names":[],"mappings":"AA6RA;AAcA,OAAO,EAAE,gBAAgB,EAAE,MAAM,6BAA6B,CAAC;AAC/D,OAAO,EAAE,kBAAkB,EAAE,MAAM,+BAA+B,CAAC;AAGnE,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE/C,OAAO,mCAAmC,CAAC
|
|
1
|
+
{"version":3,"file":"LayerPanel.vue.d.ts","sourceRoot":"","sources":["../../../src/components/OlDialogs/LayerPanel.vue"],"names":[],"mappings":"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"}
|