@maptiler/geocoding-control 1.4.2-dev.2 → 2.0.0-rc.1
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/MapLibreBasedGeocodingControl.d.ts +2971 -35
- package/leaflet-controller.d.ts +1 -1
- package/leaflet-controller.js +580 -569
- package/leaflet-controller.js.map +1 -1
- package/leaflet-controller.umd.js +3 -3
- package/leaflet-controller.umd.js.map +1 -1
- package/leaflet.d.ts +74 -16
- package/leaflet.js +1344 -1311
- package/leaflet.js.map +1 -1
- package/leaflet.umd.js +3 -3
- package/leaflet.umd.js.map +1 -1
- package/maplibregl-controller.d.ts +7 -7
- package/maplibregl-controller.js +683 -661
- package/maplibregl-controller.js.map +1 -1
- package/maplibregl-controller.umd.js +3 -3
- package/maplibregl-controller.umd.js.map +1 -1
- package/maplibregl.js +1632 -1481
- package/maplibregl.js.map +1 -1
- package/maplibregl.umd.js +3 -3
- package/maplibregl.umd.js.map +1 -1
- package/maptilersdk.js +1642 -1488
- package/maptilersdk.js.map +1 -1
- package/maptilersdk.umd.js +3 -3
- package/maptilersdk.umd.js.map +1 -1
- package/openlayers-controller.d.ts +1 -1
- package/openlayers-controller.js +308 -306
- package/openlayers-controller.js.map +1 -1
- package/openlayers-controller.umd.js +3 -3
- package/openlayers-controller.umd.js.map +1 -1
- package/openlayers.d.ts +21 -0
- package/openlayers.js +1301 -1313
- package/openlayers.js.map +1 -1
- package/openlayers.umd.js +3 -3
- package/openlayers.umd.js.map +1 -1
- package/package.json +18 -18
- package/react.d.ts +4 -4
- package/react.js +663 -644
- package/react.js.map +1 -1
- package/react.umd.js +1 -1
- package/react.umd.js.map +1 -1
- package/style.css +1 -1
- package/svelte/FeatureItem.svelte.d.ts +1 -1
- package/svelte/GeocodingControl.svelte +64 -33
- package/svelte/GeocodingControl.svelte.d.ts +25 -9
- package/svelte/MapLibreBasedGeocodingControl.d.ts +2971 -35
- package/svelte/MapLibreBasedGeocodingControl.js +166 -58
- package/svelte/leaflet-controller.d.ts +1 -1
- package/svelte/leaflet-controller.js +50 -24
- package/svelte/leaflet.d.ts +74 -16
- package/svelte/leaflet.js +25 -15
- package/svelte/maplibregl-controller.d.ts +7 -7
- package/svelte/maplibregl-controller.js +96 -66
- package/svelte/maplibregl.js +10 -7
- package/svelte/maptilersdk.js +23 -18
- package/svelte/openlayers-controller.d.ts +1 -1
- package/svelte/openlayers-controller.js +4 -1
- package/svelte/openlayers.d.ts +21 -0
- package/svelte/openlayers.js +30 -45
- package/svelte/react.d.ts +4 -4
- package/svelte/types.d.ts +38 -12
- package/svelte/vanilla.d.ts +14 -1
- package/svelte/vanilla.js +31 -8
- package/types.d.ts +38 -12
- package/vanilla.d.ts +14 -1
- package/vanilla.js +838 -791
- package/vanilla.js.map +1 -1
- package/vanilla.umd.js +1 -1
- package/vanilla.umd.js.map +1 -1
- package/maplibregl.d.ts +0 -16
- package/maptilersdk.d.ts +0 -11
- package/svelte/maplibregl.d.ts +0 -16
- package/svelte/maptilersdk.d.ts +0 -11
package/react.js
CHANGED
|
@@ -1,48 +1,48 @@
|
|
|
1
|
-
var
|
|
2
|
-
var
|
|
3
|
-
var
|
|
4
|
-
import { forwardRef as
|
|
5
|
-
function
|
|
1
|
+
var ui = Object.defineProperty;
|
|
2
|
+
var ci = (i, e, t) => e in i ? ui(i, e, { enumerable: !0, configurable: !0, writable: !0, value: t }) : i[e] = t;
|
|
3
|
+
var tt = (i, e, t) => ci(i, typeof e != "symbol" ? e + "" : e, t);
|
|
4
|
+
import { forwardRef as di, useRef as ft, useEffect as it, useImperativeHandle as fi, createElement as mi } from "react";
|
|
5
|
+
function I() {
|
|
6
6
|
}
|
|
7
|
-
function
|
|
7
|
+
function gi(i, e) {
|
|
8
8
|
for (const t in e) i[t] = e[t];
|
|
9
9
|
return (
|
|
10
10
|
/** @type {T & S} */
|
|
11
11
|
i
|
|
12
12
|
);
|
|
13
13
|
}
|
|
14
|
-
function
|
|
14
|
+
function Ot(i) {
|
|
15
15
|
return i();
|
|
16
16
|
}
|
|
17
|
-
function
|
|
17
|
+
function mt() {
|
|
18
18
|
return /* @__PURE__ */ Object.create(null);
|
|
19
19
|
}
|
|
20
20
|
function ae(i) {
|
|
21
|
-
i.forEach(
|
|
21
|
+
i.forEach(Ot);
|
|
22
22
|
}
|
|
23
|
-
function
|
|
23
|
+
function Ut(i) {
|
|
24
24
|
return typeof i == "function";
|
|
25
25
|
}
|
|
26
|
-
function
|
|
26
|
+
function be(i, e) {
|
|
27
27
|
return i != i ? e == e : i !== e || i && typeof i == "object" || typeof i == "function";
|
|
28
28
|
}
|
|
29
|
-
let
|
|
30
|
-
function
|
|
31
|
-
return i === e ? !0 : (
|
|
29
|
+
let He;
|
|
30
|
+
function x(i, e) {
|
|
31
|
+
return i === e ? !0 : (He || (He = document.createElement("a")), He.href = e, i === He.href);
|
|
32
32
|
}
|
|
33
|
-
function
|
|
33
|
+
function hi(i) {
|
|
34
34
|
return Object.keys(i).length === 0;
|
|
35
35
|
}
|
|
36
|
-
function
|
|
36
|
+
function bi(i, e, t, r) {
|
|
37
37
|
if (i) {
|
|
38
|
-
const o =
|
|
38
|
+
const o = It(i, e, t, r);
|
|
39
39
|
return i[0](o);
|
|
40
40
|
}
|
|
41
41
|
}
|
|
42
|
-
function
|
|
43
|
-
return i[1] && r ?
|
|
42
|
+
function It(i, e, t, r) {
|
|
43
|
+
return i[1] && r ? gi(t.ctx.slice(), i[1](r(e))) : t.ctx;
|
|
44
44
|
}
|
|
45
|
-
function
|
|
45
|
+
function vi(i, e, t, r) {
|
|
46
46
|
if (i[2] && r) {
|
|
47
47
|
const o = i[2](r(t));
|
|
48
48
|
if (e.dirty === void 0)
|
|
@@ -57,13 +57,13 @@ function fi(i, e, t, r) {
|
|
|
57
57
|
}
|
|
58
58
|
return e.dirty;
|
|
59
59
|
}
|
|
60
|
-
function
|
|
60
|
+
function Li(i, e, t, r, o, u) {
|
|
61
61
|
if (o) {
|
|
62
|
-
const a =
|
|
62
|
+
const a = It(e, t, r, u);
|
|
63
63
|
i.p(a, o);
|
|
64
64
|
}
|
|
65
65
|
}
|
|
66
|
-
function
|
|
66
|
+
function _i(i) {
|
|
67
67
|
if (i.ctx.length > 32) {
|
|
68
68
|
const e = [], t = i.ctx.length / 32;
|
|
69
69
|
for (let r = 0; r < t; r++)
|
|
@@ -72,37 +72,37 @@ function gi(i) {
|
|
|
72
72
|
}
|
|
73
73
|
return -1;
|
|
74
74
|
}
|
|
75
|
-
function
|
|
75
|
+
function gt(i) {
|
|
76
76
|
return i ?? "";
|
|
77
77
|
}
|
|
78
|
-
function
|
|
78
|
+
function M(i, e) {
|
|
79
79
|
i.appendChild(e);
|
|
80
80
|
}
|
|
81
|
-
function
|
|
81
|
+
function A(i, e, t) {
|
|
82
82
|
i.insertBefore(e, t || null);
|
|
83
83
|
}
|
|
84
|
-
function
|
|
84
|
+
function O(i) {
|
|
85
85
|
i.parentNode && i.parentNode.removeChild(i);
|
|
86
86
|
}
|
|
87
|
-
function
|
|
87
|
+
function z(i) {
|
|
88
88
|
return document.createElement(i);
|
|
89
89
|
}
|
|
90
90
|
function ne(i) {
|
|
91
91
|
return document.createElementNS("http://www.w3.org/2000/svg", i);
|
|
92
92
|
}
|
|
93
|
-
function
|
|
93
|
+
function de(i) {
|
|
94
94
|
return document.createTextNode(i);
|
|
95
95
|
}
|
|
96
96
|
function J() {
|
|
97
|
-
return
|
|
97
|
+
return de(" ");
|
|
98
98
|
}
|
|
99
|
-
function
|
|
100
|
-
return
|
|
99
|
+
function yi() {
|
|
100
|
+
return de("");
|
|
101
101
|
}
|
|
102
|
-
function
|
|
102
|
+
function K(i, e, t, r) {
|
|
103
103
|
return i.addEventListener(e, t, r), () => i.removeEventListener(e, t, r);
|
|
104
104
|
}
|
|
105
|
-
function
|
|
105
|
+
function wi(i) {
|
|
106
106
|
return function(e) {
|
|
107
107
|
return e.preventDefault(), i.call(this, e);
|
|
108
108
|
};
|
|
@@ -110,39 +110,39 @@ function bi(i) {
|
|
|
110
110
|
function l(i, e, t) {
|
|
111
111
|
t == null ? i.removeAttribute(e) : i.getAttribute(e) !== t && i.setAttribute(e, t);
|
|
112
112
|
}
|
|
113
|
-
function
|
|
113
|
+
function Ei(i) {
|
|
114
114
|
return Array.from(i.childNodes);
|
|
115
115
|
}
|
|
116
|
-
function
|
|
116
|
+
function Re(i, e) {
|
|
117
117
|
e = "" + e, i.data !== e && (i.data = /** @type {string} */
|
|
118
118
|
e);
|
|
119
119
|
}
|
|
120
|
-
function
|
|
120
|
+
function ht(i, e) {
|
|
121
121
|
i.value = e ?? "";
|
|
122
122
|
}
|
|
123
|
-
function
|
|
123
|
+
function ce(i, e, t) {
|
|
124
124
|
i.classList.toggle(e, !!t);
|
|
125
125
|
}
|
|
126
|
-
function
|
|
126
|
+
function Si(i, e, { bubbles: t = !1, cancelable: r = !1 } = {}) {
|
|
127
127
|
return new CustomEvent(i, { detail: e, bubbles: t, cancelable: r });
|
|
128
128
|
}
|
|
129
|
-
let
|
|
130
|
-
function
|
|
131
|
-
|
|
129
|
+
let ze;
|
|
130
|
+
function We(i) {
|
|
131
|
+
ze = i;
|
|
132
132
|
}
|
|
133
|
-
function
|
|
134
|
-
if (!
|
|
135
|
-
return
|
|
133
|
+
function At() {
|
|
134
|
+
if (!ze) throw new Error("Function called outside component initialization");
|
|
135
|
+
return ze;
|
|
136
136
|
}
|
|
137
|
-
function
|
|
138
|
-
|
|
137
|
+
function pi(i) {
|
|
138
|
+
At().$$.on_destroy.push(i);
|
|
139
139
|
}
|
|
140
|
-
function
|
|
141
|
-
const i =
|
|
140
|
+
function Ti() {
|
|
141
|
+
const i = At();
|
|
142
142
|
return (e, t, { cancelable: r = !1 } = {}) => {
|
|
143
143
|
const o = i.$$.callbacks[e];
|
|
144
144
|
if (o) {
|
|
145
|
-
const u =
|
|
145
|
+
const u = Si(
|
|
146
146
|
/** @type {string} */
|
|
147
147
|
e,
|
|
148
148
|
t,
|
|
@@ -155,142 +155,142 @@ function yi() {
|
|
|
155
155
|
return !0;
|
|
156
156
|
};
|
|
157
157
|
}
|
|
158
|
-
function
|
|
158
|
+
function bt(i, e) {
|
|
159
159
|
const t = i.$$.callbacks[e.type];
|
|
160
160
|
t && t.slice().forEach((r) => r.call(this, e));
|
|
161
161
|
}
|
|
162
|
-
const
|
|
163
|
-
let
|
|
164
|
-
const
|
|
165
|
-
let
|
|
166
|
-
function
|
|
167
|
-
|
|
162
|
+
const pe = [], nt = [];
|
|
163
|
+
let Te = [];
|
|
164
|
+
const vt = [], Ni = /* @__PURE__ */ Promise.resolve();
|
|
165
|
+
let ot = !1;
|
|
166
|
+
function Mi() {
|
|
167
|
+
ot || (ot = !0, Ni.then(Bt));
|
|
168
168
|
}
|
|
169
|
-
function
|
|
170
|
-
|
|
169
|
+
function st(i) {
|
|
170
|
+
Te.push(i);
|
|
171
171
|
}
|
|
172
|
-
const
|
|
173
|
-
let
|
|
174
|
-
function
|
|
175
|
-
if (
|
|
172
|
+
const rt = /* @__PURE__ */ new Set();
|
|
173
|
+
let Se = 0;
|
|
174
|
+
function Bt() {
|
|
175
|
+
if (Se !== 0)
|
|
176
176
|
return;
|
|
177
|
-
const i =
|
|
177
|
+
const i = ze;
|
|
178
178
|
do {
|
|
179
179
|
try {
|
|
180
|
-
for (;
|
|
181
|
-
const e =
|
|
182
|
-
|
|
180
|
+
for (; Se < pe.length; ) {
|
|
181
|
+
const e = pe[Se];
|
|
182
|
+
Se++, We(e), ki(e.$$);
|
|
183
183
|
}
|
|
184
184
|
} catch (e) {
|
|
185
|
-
throw
|
|
185
|
+
throw pe.length = 0, Se = 0, e;
|
|
186
186
|
}
|
|
187
|
-
for (
|
|
188
|
-
for (let e = 0; e <
|
|
189
|
-
const t =
|
|
190
|
-
|
|
187
|
+
for (We(null), pe.length = 0, Se = 0; nt.length; ) nt.pop()();
|
|
188
|
+
for (let e = 0; e < Te.length; e += 1) {
|
|
189
|
+
const t = Te[e];
|
|
190
|
+
rt.has(t) || (rt.add(t), t());
|
|
191
191
|
}
|
|
192
|
-
|
|
193
|
-
} while (
|
|
194
|
-
for (;
|
|
195
|
-
|
|
196
|
-
|
|
192
|
+
Te.length = 0;
|
|
193
|
+
} while (pe.length);
|
|
194
|
+
for (; vt.length; )
|
|
195
|
+
vt.pop()();
|
|
196
|
+
ot = !1, rt.clear(), We(i);
|
|
197
197
|
}
|
|
198
|
-
function
|
|
198
|
+
function ki(i) {
|
|
199
199
|
if (i.fragment !== null) {
|
|
200
200
|
i.update(), ae(i.before_update);
|
|
201
201
|
const e = i.dirty;
|
|
202
|
-
i.dirty = [-1], i.fragment && i.fragment.p(i.ctx, e), i.after_update.forEach(
|
|
202
|
+
i.dirty = [-1], i.fragment && i.fragment.p(i.ctx, e), i.after_update.forEach(st);
|
|
203
203
|
}
|
|
204
204
|
}
|
|
205
|
-
function
|
|
205
|
+
function Ci(i) {
|
|
206
206
|
const e = [], t = [];
|
|
207
|
-
|
|
207
|
+
Te.forEach((r) => i.indexOf(r) === -1 ? e.push(r) : t.push(r)), t.forEach((r) => r()), Te = e;
|
|
208
208
|
}
|
|
209
|
-
const
|
|
210
|
-
let
|
|
211
|
-
function
|
|
212
|
-
|
|
209
|
+
const je = /* @__PURE__ */ new Set();
|
|
210
|
+
let he;
|
|
211
|
+
function Pe() {
|
|
212
|
+
he = {
|
|
213
213
|
r: 0,
|
|
214
214
|
c: [],
|
|
215
|
-
p:
|
|
215
|
+
p: he
|
|
216
216
|
// parent group
|
|
217
217
|
};
|
|
218
218
|
}
|
|
219
|
-
function
|
|
220
|
-
|
|
219
|
+
function Ze() {
|
|
220
|
+
he.r || ae(he.c), he = he.p;
|
|
221
221
|
}
|
|
222
|
-
function
|
|
223
|
-
i && i.i && (
|
|
222
|
+
function H(i, e) {
|
|
223
|
+
i && i.i && (je.delete(i), i.i(e));
|
|
224
224
|
}
|
|
225
225
|
function Q(i, e, t, r) {
|
|
226
226
|
if (i && i.o) {
|
|
227
|
-
if (
|
|
228
|
-
|
|
229
|
-
|
|
227
|
+
if (je.has(i)) return;
|
|
228
|
+
je.add(i), he.c.push(() => {
|
|
229
|
+
je.delete(i), r && (t && i.d(1), r());
|
|
230
230
|
}), i.o(e);
|
|
231
231
|
} else r && r();
|
|
232
232
|
}
|
|
233
|
-
function
|
|
233
|
+
function Lt(i) {
|
|
234
234
|
return (i == null ? void 0 : i.length) !== void 0 ? i : Array.from(i);
|
|
235
235
|
}
|
|
236
|
-
function
|
|
236
|
+
function Wi(i, e) {
|
|
237
237
|
Q(i, 1, 1, () => {
|
|
238
238
|
e.delete(i.key);
|
|
239
239
|
});
|
|
240
240
|
}
|
|
241
|
-
function
|
|
241
|
+
function Ri(i, e, t, r, o, u, a, n, d, c, f, h) {
|
|
242
242
|
let v = i.length, _ = u.length, w = v;
|
|
243
243
|
const W = {};
|
|
244
244
|
for (; w--; ) W[i[w].key] = w;
|
|
245
|
-
const y = [], E = /* @__PURE__ */ new Map(), C = /* @__PURE__ */ new Map(),
|
|
245
|
+
const y = [], E = /* @__PURE__ */ new Map(), C = /* @__PURE__ */ new Map(), R = [];
|
|
246
246
|
for (w = _; w--; ) {
|
|
247
247
|
const g = h(o, u, w), m = t(g);
|
|
248
248
|
let k = a.get(m);
|
|
249
|
-
k ?
|
|
249
|
+
k ? R.push(() => k.p(g, e)) : (k = c(m, g), k.c()), E.set(m, y[w] = k), m in W && C.set(m, Math.abs(w - W[m]));
|
|
250
250
|
}
|
|
251
|
-
const p = /* @__PURE__ */ new Set(),
|
|
251
|
+
const p = /* @__PURE__ */ new Set(), G = /* @__PURE__ */ new Set();
|
|
252
252
|
function b(g) {
|
|
253
|
-
|
|
253
|
+
H(g, 1), g.m(n, f), a.set(g.key, g), f = g.first, _--;
|
|
254
254
|
}
|
|
255
255
|
for (; v && _; ) {
|
|
256
|
-
const g = y[_ - 1], m = i[v - 1], k = g.key,
|
|
257
|
-
g === m ? (f = g.first, v--, _--) : E.has(
|
|
256
|
+
const g = y[_ - 1], m = i[v - 1], k = g.key, j = m.key;
|
|
257
|
+
g === m ? (f = g.first, v--, _--) : E.has(j) ? !a.has(k) || p.has(k) ? b(g) : G.has(j) ? v-- : C.get(k) > C.get(j) ? (G.add(k), b(g)) : (p.add(j), v--) : (d(m, a), v--);
|
|
258
258
|
}
|
|
259
259
|
for (; v--; ) {
|
|
260
260
|
const g = i[v];
|
|
261
261
|
E.has(g.key) || d(g, a);
|
|
262
262
|
}
|
|
263
263
|
for (; _; ) b(y[_ - 1]);
|
|
264
|
-
return ae(
|
|
264
|
+
return ae(R), y;
|
|
265
265
|
}
|
|
266
|
-
function
|
|
266
|
+
function fe(i) {
|
|
267
267
|
i && i.c();
|
|
268
268
|
}
|
|
269
269
|
function oe(i, e, t) {
|
|
270
270
|
const { fragment: r, after_update: o } = i.$$;
|
|
271
|
-
r && r.m(e, t),
|
|
272
|
-
const u = i.$$.on_mount.map(
|
|
271
|
+
r && r.m(e, t), st(() => {
|
|
272
|
+
const u = i.$$.on_mount.map(Ot).filter(Ut);
|
|
273
273
|
i.$$.on_destroy ? i.$$.on_destroy.push(...u) : ae(u), i.$$.on_mount = [];
|
|
274
|
-
}), o.forEach(
|
|
274
|
+
}), o.forEach(st);
|
|
275
275
|
}
|
|
276
276
|
function se(i, e) {
|
|
277
277
|
const t = i.$$;
|
|
278
|
-
t.fragment !== null && (
|
|
278
|
+
t.fragment !== null && (Ci(t.after_update), ae(t.on_destroy), t.fragment && t.fragment.d(e), t.on_destroy = t.fragment = null, t.ctx = []);
|
|
279
279
|
}
|
|
280
|
-
function
|
|
281
|
-
i.$$.dirty[0] === -1 && (
|
|
280
|
+
function zi(i, e) {
|
|
281
|
+
i.$$.dirty[0] === -1 && (pe.push(i), Mi(), i.$$.dirty.fill(0)), i.$$.dirty[e / 31 | 0] |= 1 << e % 31;
|
|
282
282
|
}
|
|
283
|
-
function
|
|
284
|
-
const d =
|
|
285
|
-
|
|
283
|
+
function ve(i, e, t, r, o, u, a = null, n = [-1]) {
|
|
284
|
+
const d = ze;
|
|
285
|
+
We(i);
|
|
286
286
|
const c = i.$$ = {
|
|
287
287
|
fragment: null,
|
|
288
288
|
ctx: [],
|
|
289
289
|
// state
|
|
290
290
|
props: u,
|
|
291
|
-
update:
|
|
291
|
+
update: I,
|
|
292
292
|
not_equal: o,
|
|
293
|
-
bound:
|
|
293
|
+
bound: mt(),
|
|
294
294
|
// lifecycle
|
|
295
295
|
on_mount: [],
|
|
296
296
|
on_destroy: [],
|
|
@@ -299,7 +299,7 @@ function he(i, e, t, r, o, u, a = null, n = [-1]) {
|
|
|
299
299
|
after_update: [],
|
|
300
300
|
context: new Map(e.context || (d ? d.$$.context : [])),
|
|
301
301
|
// everything else
|
|
302
|
-
callbacks:
|
|
302
|
+
callbacks: mt(),
|
|
303
303
|
dirty: n,
|
|
304
304
|
skip_bound: !1,
|
|
305
305
|
root: e.target || d.$$.root
|
|
@@ -308,18 +308,18 @@ function he(i, e, t, r, o, u, a = null, n = [-1]) {
|
|
|
308
308
|
let f = !1;
|
|
309
309
|
if (c.ctx = t ? t(i, e.props || {}, (h, v, ..._) => {
|
|
310
310
|
const w = _.length ? _[0] : v;
|
|
311
|
-
return c.ctx && o(c.ctx[h], c.ctx[h] = w) && (!c.skip_bound && c.bound[h] && c.bound[h](w), f &&
|
|
311
|
+
return c.ctx && o(c.ctx[h], c.ctx[h] = w) && (!c.skip_bound && c.bound[h] && c.bound[h](w), f && zi(i, h)), v;
|
|
312
312
|
}) : [], c.update(), f = !0, ae(c.before_update), c.fragment = r ? r(c.ctx) : !1, e.target) {
|
|
313
313
|
if (e.hydrate) {
|
|
314
|
-
const h =
|
|
315
|
-
c.fragment && c.fragment.l(h), h.forEach(
|
|
314
|
+
const h = Ei(e.target);
|
|
315
|
+
c.fragment && c.fragment.l(h), h.forEach(O);
|
|
316
316
|
} else
|
|
317
317
|
c.fragment && c.fragment.c();
|
|
318
|
-
e.intro &&
|
|
318
|
+
e.intro && H(i.$$.fragment), oe(i, e.target, e.anchor), Bt();
|
|
319
319
|
}
|
|
320
|
-
|
|
320
|
+
We(d);
|
|
321
321
|
}
|
|
322
|
-
class
|
|
322
|
+
class Le {
|
|
323
323
|
constructor() {
|
|
324
324
|
/**
|
|
325
325
|
* ### PRIVATE API
|
|
@@ -328,7 +328,7 @@ class be {
|
|
|
328
328
|
*
|
|
329
329
|
* @type {any}
|
|
330
330
|
*/
|
|
331
|
-
|
|
331
|
+
tt(this, "$$");
|
|
332
332
|
/**
|
|
333
333
|
* ### PRIVATE API
|
|
334
334
|
*
|
|
@@ -336,11 +336,11 @@ class be {
|
|
|
336
336
|
*
|
|
337
337
|
* @type {any}
|
|
338
338
|
*/
|
|
339
|
-
|
|
339
|
+
tt(this, "$$set");
|
|
340
340
|
}
|
|
341
341
|
/** @returns {void} */
|
|
342
342
|
$destroy() {
|
|
343
|
-
se(this, 1), this.$destroy =
|
|
343
|
+
se(this, 1), this.$destroy = I;
|
|
344
344
|
}
|
|
345
345
|
/**
|
|
346
346
|
* @template {Extract<keyof Events, string>} K
|
|
@@ -349,8 +349,8 @@ class be {
|
|
|
349
349
|
* @returns {() => void}
|
|
350
350
|
*/
|
|
351
351
|
$on(e, t) {
|
|
352
|
-
if (!
|
|
353
|
-
return
|
|
352
|
+
if (!Ut(t))
|
|
353
|
+
return I;
|
|
354
354
|
const r = this.$$.callbacks[e] || (this.$$.callbacks[e] = []);
|
|
355
355
|
return r.push(t), () => {
|
|
356
356
|
const o = r.indexOf(t);
|
|
@@ -362,60 +362,60 @@ class be {
|
|
|
362
362
|
* @returns {void}
|
|
363
363
|
*/
|
|
364
364
|
$set(e) {
|
|
365
|
-
this.$$set && !
|
|
365
|
+
this.$$set && !hi(e) && (this.$$.skip_bound = !0, this.$$set(e), this.$$.skip_bound = !1);
|
|
366
366
|
}
|
|
367
367
|
}
|
|
368
|
-
const
|
|
369
|
-
typeof window < "u" && (window.__svelte || (window.__svelte = { v: /* @__PURE__ */ new Set() })).v.add(
|
|
370
|
-
function
|
|
368
|
+
const Di = "4";
|
|
369
|
+
typeof window < "u" && (window.__svelte || (window.__svelte = { v: /* @__PURE__ */ new Set() })).v.add(Di);
|
|
370
|
+
function Oi(i) {
|
|
371
371
|
let e, t;
|
|
372
372
|
return {
|
|
373
373
|
c() {
|
|
374
374
|
e = ne("svg"), t = ne("path"), l(t, "d", "M13.12.706a.982.982 0 0 0-1.391 0L6.907 5.517 2.087.696a.982.982 0 1 0-1.391 1.39l4.821 4.821L.696 11.73a.982.982 0 1 0 1.39 1.39l4.821-4.821 4.822 4.821a.982.982 0 1 0 1.39-1.39L8.298 6.908l4.821-4.822a.988.988 0 0 0 0-1.38Z"), l(e, "viewBox", "0 0 14 14"), l(e, "width", "13"), l(e, "height", "13"), l(e, "class", "svelte-en2qvf");
|
|
375
375
|
},
|
|
376
376
|
m(r, o) {
|
|
377
|
-
|
|
377
|
+
A(r, e, o), M(e, t);
|
|
378
378
|
},
|
|
379
|
-
p:
|
|
380
|
-
i:
|
|
381
|
-
o:
|
|
379
|
+
p: I,
|
|
380
|
+
i: I,
|
|
381
|
+
o: I,
|
|
382
382
|
d(r) {
|
|
383
|
-
r &&
|
|
383
|
+
r && O(e);
|
|
384
384
|
}
|
|
385
385
|
};
|
|
386
386
|
}
|
|
387
|
-
class
|
|
387
|
+
class Ft extends Le {
|
|
388
388
|
constructor(e) {
|
|
389
|
-
super(),
|
|
389
|
+
super(), ve(this, e, null, Oi, be, {});
|
|
390
390
|
}
|
|
391
391
|
}
|
|
392
|
-
function
|
|
392
|
+
function Ui(i) {
|
|
393
393
|
let e, t;
|
|
394
394
|
return {
|
|
395
395
|
c() {
|
|
396
396
|
e = ne("svg"), t = ne("path"), l(t, "d", "M15 0C6.705 0 0 6.705 0 15C0 23.295 6.705 30 15 30C23.295 30 30 23.295 30 15C30 6.705 23.295 0 15 0ZM22.5 20.385L20.385 22.5L15 17.115L9.615 22.5L7.5 20.385L12.885 15L7.5 9.615L9.615 7.5L15 12.885L20.385 7.5L22.5 9.615L17.115 15L22.5 20.385Z"), l(e, "viewBox", "0 0 30 30"), l(e, "fill", "none"), l(e, "xmlns", "http://www.w3.org/2000/svg"), l(e, "class", "svelte-d2loi5");
|
|
397
397
|
},
|
|
398
398
|
m(r, o) {
|
|
399
|
-
|
|
399
|
+
A(r, e, o), M(e, t);
|
|
400
400
|
},
|
|
401
|
-
p:
|
|
402
|
-
i:
|
|
403
|
-
o:
|
|
401
|
+
p: I,
|
|
402
|
+
i: I,
|
|
403
|
+
o: I,
|
|
404
404
|
d(r) {
|
|
405
|
-
r &&
|
|
405
|
+
r && O(e);
|
|
406
406
|
}
|
|
407
407
|
};
|
|
408
408
|
}
|
|
409
|
-
class
|
|
409
|
+
class Ht extends Le {
|
|
410
410
|
constructor(e) {
|
|
411
|
-
super(),
|
|
411
|
+
super(), ve(this, e, null, Ui, be, {});
|
|
412
412
|
}
|
|
413
413
|
}
|
|
414
|
-
function
|
|
414
|
+
function Ii(i) {
|
|
415
415
|
let e, t;
|
|
416
416
|
return {
|
|
417
417
|
c() {
|
|
418
|
-
e =
|
|
418
|
+
e = z("img"), x(e.src, t = /*iconsBaseUrl*/
|
|
419
419
|
i[3] + "area.svg") || l(e, "src", t), l(
|
|
420
420
|
e,
|
|
421
421
|
"alt",
|
|
@@ -424,11 +424,11 @@ function Oi(i) {
|
|
|
424
424
|
), l(e, "class", "svelte-ltkwvy");
|
|
425
425
|
},
|
|
426
426
|
m(r, o) {
|
|
427
|
-
|
|
427
|
+
A(r, e, o);
|
|
428
428
|
},
|
|
429
429
|
p(r, o) {
|
|
430
430
|
o & /*iconsBaseUrl*/
|
|
431
|
-
8 && !
|
|
431
|
+
8 && !x(e.src, t = /*iconsBaseUrl*/
|
|
432
432
|
r[3] + "area.svg") && l(e, "src", t), o & /*placeType*/
|
|
433
433
|
64 && l(
|
|
434
434
|
e,
|
|
@@ -438,15 +438,15 @@ function Oi(i) {
|
|
|
438
438
|
);
|
|
439
439
|
},
|
|
440
440
|
d(r) {
|
|
441
|
-
r &&
|
|
441
|
+
r && O(e);
|
|
442
442
|
}
|
|
443
443
|
};
|
|
444
444
|
}
|
|
445
|
-
function
|
|
445
|
+
function Ai(i) {
|
|
446
446
|
let e, t;
|
|
447
447
|
return {
|
|
448
448
|
c() {
|
|
449
|
-
e =
|
|
449
|
+
e = z("img"), x(e.src, t = /*iconsBaseUrl*/
|
|
450
450
|
i[3] + "reverse.svg") || l(e, "src", t), l(
|
|
451
451
|
e,
|
|
452
452
|
"alt",
|
|
@@ -455,11 +455,11 @@ function Ri(i) {
|
|
|
455
455
|
), l(e, "class", "svelte-ltkwvy");
|
|
456
456
|
},
|
|
457
457
|
m(r, o) {
|
|
458
|
-
|
|
458
|
+
A(r, e, o);
|
|
459
459
|
},
|
|
460
460
|
p(r, o) {
|
|
461
461
|
o & /*iconsBaseUrl*/
|
|
462
|
-
8 && !
|
|
462
|
+
8 && !x(e.src, t = /*iconsBaseUrl*/
|
|
463
463
|
r[3] + "reverse.svg") && l(e, "src", t), o & /*placeType*/
|
|
464
464
|
64 && l(
|
|
465
465
|
e,
|
|
@@ -469,15 +469,15 @@ function Ri(i) {
|
|
|
469
469
|
);
|
|
470
470
|
},
|
|
471
471
|
d(r) {
|
|
472
|
-
r &&
|
|
472
|
+
r && O(e);
|
|
473
473
|
}
|
|
474
474
|
};
|
|
475
475
|
}
|
|
476
|
-
function
|
|
476
|
+
function Bi(i) {
|
|
477
477
|
let e, t;
|
|
478
478
|
return {
|
|
479
479
|
c() {
|
|
480
|
-
e =
|
|
480
|
+
e = z("img"), x(e.src, t = /*iconsBaseUrl*/
|
|
481
481
|
i[3] + "poi.svg") || l(e, "src", t), l(
|
|
482
482
|
e,
|
|
483
483
|
"alt",
|
|
@@ -486,11 +486,11 @@ function Di(i) {
|
|
|
486
486
|
), l(e, "class", "svelte-ltkwvy");
|
|
487
487
|
},
|
|
488
488
|
m(r, o) {
|
|
489
|
-
|
|
489
|
+
A(r, e, o);
|
|
490
490
|
},
|
|
491
491
|
p(r, o) {
|
|
492
492
|
o & /*iconsBaseUrl*/
|
|
493
|
-
8 && !
|
|
493
|
+
8 && !x(e.src, t = /*iconsBaseUrl*/
|
|
494
494
|
r[3] + "poi.svg") && l(e, "src", t), o & /*placeType*/
|
|
495
495
|
64 && l(
|
|
496
496
|
e,
|
|
@@ -500,15 +500,15 @@ function Di(i) {
|
|
|
500
500
|
);
|
|
501
501
|
},
|
|
502
502
|
d(r) {
|
|
503
|
-
r &&
|
|
503
|
+
r && O(e);
|
|
504
504
|
}
|
|
505
505
|
};
|
|
506
506
|
}
|
|
507
|
-
function
|
|
507
|
+
function Fi(i) {
|
|
508
508
|
let e, t;
|
|
509
509
|
return {
|
|
510
510
|
c() {
|
|
511
|
-
e =
|
|
511
|
+
e = z("img"), x(e.src, t = /*iconsBaseUrl*/
|
|
512
512
|
i[3] + "postal_code.svg") || l(e, "src", t), l(
|
|
513
513
|
e,
|
|
514
514
|
"alt",
|
|
@@ -517,11 +517,11 @@ function Ui(i) {
|
|
|
517
517
|
), l(e, "class", "svelte-ltkwvy");
|
|
518
518
|
},
|
|
519
519
|
m(r, o) {
|
|
520
|
-
|
|
520
|
+
A(r, e, o);
|
|
521
521
|
},
|
|
522
522
|
p(r, o) {
|
|
523
523
|
o & /*iconsBaseUrl*/
|
|
524
|
-
8 && !
|
|
524
|
+
8 && !x(e.src, t = /*iconsBaseUrl*/
|
|
525
525
|
r[3] + "postal_code.svg") && l(e, "src", t), o & /*placeType*/
|
|
526
526
|
64 && l(
|
|
527
527
|
e,
|
|
@@ -531,15 +531,15 @@ function Ui(i) {
|
|
|
531
531
|
);
|
|
532
532
|
},
|
|
533
533
|
d(r) {
|
|
534
|
-
r &&
|
|
534
|
+
r && O(e);
|
|
535
535
|
}
|
|
536
536
|
};
|
|
537
537
|
}
|
|
538
|
-
function
|
|
538
|
+
function Hi(i) {
|
|
539
539
|
let e, t;
|
|
540
540
|
return {
|
|
541
541
|
c() {
|
|
542
|
-
e =
|
|
542
|
+
e = z("img"), x(e.src, t = /*iconsBaseUrl*/
|
|
543
543
|
i[3] + "street.svg") || l(e, "src", t), l(
|
|
544
544
|
e,
|
|
545
545
|
"alt",
|
|
@@ -548,11 +548,11 @@ function Ii(i) {
|
|
|
548
548
|
), l(e, "class", "svelte-ltkwvy");
|
|
549
549
|
},
|
|
550
550
|
m(r, o) {
|
|
551
|
-
|
|
551
|
+
A(r, e, o);
|
|
552
552
|
},
|
|
553
553
|
p(r, o) {
|
|
554
554
|
o & /*iconsBaseUrl*/
|
|
555
|
-
8 && !
|
|
555
|
+
8 && !x(e.src, t = /*iconsBaseUrl*/
|
|
556
556
|
r[3] + "street.svg") && l(e, "src", t), o & /*placeType*/
|
|
557
557
|
64 && l(
|
|
558
558
|
e,
|
|
@@ -562,15 +562,15 @@ function Ii(i) {
|
|
|
562
562
|
);
|
|
563
563
|
},
|
|
564
564
|
d(r) {
|
|
565
|
-
r &&
|
|
565
|
+
r && O(e);
|
|
566
566
|
}
|
|
567
567
|
};
|
|
568
568
|
}
|
|
569
|
-
function
|
|
569
|
+
function ji(i) {
|
|
570
570
|
let e, t;
|
|
571
571
|
return {
|
|
572
572
|
c() {
|
|
573
|
-
e =
|
|
573
|
+
e = z("img"), x(e.src, t = /*iconsBaseUrl*/
|
|
574
574
|
i[3] + "road.svg") || l(e, "src", t), l(
|
|
575
575
|
e,
|
|
576
576
|
"alt",
|
|
@@ -579,11 +579,11 @@ function Ai(i) {
|
|
|
579
579
|
), l(e, "class", "svelte-ltkwvy");
|
|
580
580
|
},
|
|
581
581
|
m(r, o) {
|
|
582
|
-
|
|
582
|
+
A(r, e, o);
|
|
583
583
|
},
|
|
584
584
|
p(r, o) {
|
|
585
585
|
o & /*iconsBaseUrl*/
|
|
586
|
-
8 && !
|
|
586
|
+
8 && !x(e.src, t = /*iconsBaseUrl*/
|
|
587
587
|
r[3] + "road.svg") && l(e, "src", t), o & /*placeType*/
|
|
588
588
|
64 && l(
|
|
589
589
|
e,
|
|
@@ -593,15 +593,15 @@ function Ai(i) {
|
|
|
593
593
|
);
|
|
594
594
|
},
|
|
595
595
|
d(r) {
|
|
596
|
-
r &&
|
|
596
|
+
r && O(e);
|
|
597
597
|
}
|
|
598
598
|
};
|
|
599
599
|
}
|
|
600
|
-
function
|
|
600
|
+
function Pi(i) {
|
|
601
601
|
let e, t;
|
|
602
602
|
return {
|
|
603
603
|
c() {
|
|
604
|
-
e =
|
|
604
|
+
e = z("img"), x(e.src, t = /*iconsBaseUrl*/
|
|
605
605
|
i[3] + "housenumber.svg") || l(e, "src", t), l(
|
|
606
606
|
e,
|
|
607
607
|
"alt",
|
|
@@ -610,11 +610,11 @@ function Bi(i) {
|
|
|
610
610
|
), l(e, "class", "svelte-ltkwvy");
|
|
611
611
|
},
|
|
612
612
|
m(r, o) {
|
|
613
|
-
|
|
613
|
+
A(r, e, o);
|
|
614
614
|
},
|
|
615
615
|
p(r, o) {
|
|
616
616
|
o & /*iconsBaseUrl*/
|
|
617
|
-
8 && !
|
|
617
|
+
8 && !x(e.src, t = /*iconsBaseUrl*/
|
|
618
618
|
r[3] + "housenumber.svg") && l(e, "src", t), o & /*placeType*/
|
|
619
619
|
64 && l(
|
|
620
620
|
e,
|
|
@@ -624,15 +624,15 @@ function Bi(i) {
|
|
|
624
624
|
);
|
|
625
625
|
},
|
|
626
626
|
d(r) {
|
|
627
|
-
r &&
|
|
627
|
+
r && O(e);
|
|
628
628
|
}
|
|
629
629
|
};
|
|
630
630
|
}
|
|
631
|
-
function
|
|
631
|
+
function Zi(i) {
|
|
632
632
|
let e, t, r, o;
|
|
633
633
|
return {
|
|
634
634
|
c() {
|
|
635
|
-
e =
|
|
635
|
+
e = z("img"), x(e.src, t = /*imageUrl*/
|
|
636
636
|
i[5]) || l(e, "src", t), l(
|
|
637
637
|
e,
|
|
638
638
|
"alt",
|
|
@@ -641,7 +641,7 @@ function Fi(i) {
|
|
|
641
641
|
), l(e, "class", "svelte-ltkwvy");
|
|
642
642
|
},
|
|
643
643
|
m(u, a) {
|
|
644
|
-
|
|
644
|
+
A(u, e, a), r || (o = K(
|
|
645
645
|
e,
|
|
646
646
|
"error",
|
|
647
647
|
/*error_handler*/
|
|
@@ -650,7 +650,7 @@ function Fi(i) {
|
|
|
650
650
|
},
|
|
651
651
|
p(u, a) {
|
|
652
652
|
a & /*imageUrl*/
|
|
653
|
-
32 && !
|
|
653
|
+
32 && !x(e.src, t = /*imageUrl*/
|
|
654
654
|
u[5]) && l(e, "src", t), a & /*category*/
|
|
655
655
|
16 && l(
|
|
656
656
|
e,
|
|
@@ -660,36 +660,36 @@ function Fi(i) {
|
|
|
660
660
|
);
|
|
661
661
|
},
|
|
662
662
|
d(u) {
|
|
663
|
-
u &&
|
|
663
|
+
u && O(e), r = !1, o();
|
|
664
664
|
}
|
|
665
665
|
};
|
|
666
666
|
}
|
|
667
|
-
function
|
|
667
|
+
function _t(i) {
|
|
668
668
|
let e, t;
|
|
669
669
|
return {
|
|
670
670
|
c() {
|
|
671
|
-
e =
|
|
671
|
+
e = z("span"), t = de(
|
|
672
672
|
/*placeType*/
|
|
673
673
|
i[6]
|
|
674
674
|
), l(e, "class", "secondary svelte-ltkwvy");
|
|
675
675
|
},
|
|
676
676
|
m(r, o) {
|
|
677
|
-
|
|
677
|
+
A(r, e, o), M(e, t);
|
|
678
678
|
},
|
|
679
679
|
p(r, o) {
|
|
680
680
|
o & /*placeType*/
|
|
681
|
-
64 &&
|
|
681
|
+
64 && Re(
|
|
682
682
|
t,
|
|
683
683
|
/*placeType*/
|
|
684
684
|
r[6]
|
|
685
685
|
);
|
|
686
686
|
},
|
|
687
687
|
d(r) {
|
|
688
|
-
r &&
|
|
688
|
+
r && O(e);
|
|
689
689
|
}
|
|
690
690
|
};
|
|
691
691
|
}
|
|
692
|
-
function
|
|
692
|
+
function Gi(i) {
|
|
693
693
|
let e, t, r, o, u, a, n, d, c, f = (
|
|
694
694
|
/*isReverse*/
|
|
695
695
|
(i[7] ? (
|
|
@@ -716,34 +716,34 @@ function zi(i) {
|
|
|
716
716
|
/*feature*/
|
|
717
717
|
i[0].place_name.replace(/[^,]*,?\s*/, "")
|
|
718
718
|
)) + ""
|
|
719
|
-
), E, C,
|
|
719
|
+
), E, C, R;
|
|
720
720
|
function p(m, k) {
|
|
721
721
|
return k & /*feature*/
|
|
722
722
|
1 && (t = null), k & /*feature*/
|
|
723
723
|
1 && (r = null), k & /*feature*/
|
|
724
724
|
1 && (o = null), k & /*feature*/
|
|
725
725
|
1 && (u = null), /*imageUrl*/
|
|
726
|
-
m[5] ?
|
|
726
|
+
m[5] ? Zi : (
|
|
727
727
|
/*feature*/
|
|
728
|
-
m[0].address ?
|
|
729
|
-
m[0].id.startsWith("road.")), t ?
|
|
730
|
-
m[0].id.startsWith("address.")), r ?
|
|
731
|
-
m[0].id.startsWith("postal_code.")), o ?
|
|
732
|
-
m[0].id.startsWith("poi.")), u ?
|
|
728
|
+
m[0].address ? Pi : (t == null && (t = !!/*feature*/
|
|
729
|
+
m[0].id.startsWith("road.")), t ? ji : (r == null && (r = !!/*feature*/
|
|
730
|
+
m[0].id.startsWith("address.")), r ? Hi : (o == null && (o = !!/*feature*/
|
|
731
|
+
m[0].id.startsWith("postal_code.")), o ? Fi : (u == null && (u = !!/*feature*/
|
|
732
|
+
m[0].id.startsWith("poi.")), u ? Bi : (
|
|
733
733
|
/*isReverse*/
|
|
734
|
-
m[7] ?
|
|
734
|
+
m[7] ? Ai : Ii
|
|
735
735
|
)))))
|
|
736
736
|
);
|
|
737
737
|
}
|
|
738
|
-
let
|
|
738
|
+
let G = p(i, -1), b = G(i), g = _ && _t(i);
|
|
739
739
|
return {
|
|
740
740
|
c() {
|
|
741
|
-
e =
|
|
741
|
+
e = z("li"), b.c(), a = J(), n = z("span"), d = z("span"), c = z("span"), h = de(f), v = J(), g && g.c(), w = J(), W = z("span"), E = de(y), l(c, "class", "primary svelte-ltkwvy"), l(d, "class", "svelte-ltkwvy"), l(W, "class", "line2 svelte-ltkwvy"), l(n, "class", "texts svelte-ltkwvy"), l(e, "tabindex", "0"), l(
|
|
742
742
|
e,
|
|
743
743
|
"data-selected",
|
|
744
744
|
/*selected*/
|
|
745
745
|
i[1]
|
|
746
|
-
), l(e, "class", "svelte-ltkwvy"),
|
|
746
|
+
), l(e, "class", "svelte-ltkwvy"), ce(
|
|
747
747
|
e,
|
|
748
748
|
"selected",
|
|
749
749
|
/*selected*/
|
|
@@ -751,14 +751,14 @@ function zi(i) {
|
|
|
751
751
|
);
|
|
752
752
|
},
|
|
753
753
|
m(m, k) {
|
|
754
|
-
|
|
755
|
-
|
|
754
|
+
A(m, e, k), b.m(e, null), M(e, a), M(e, n), M(n, d), M(d, c), M(c, h), M(d, v), g && g.m(d, null), M(n, w), M(n, W), M(W, E), C || (R = [
|
|
755
|
+
K(
|
|
756
756
|
e,
|
|
757
757
|
"mouseenter",
|
|
758
758
|
/*mouseenter_handler*/
|
|
759
759
|
i[12]
|
|
760
760
|
),
|
|
761
|
-
|
|
761
|
+
K(
|
|
762
762
|
e,
|
|
763
763
|
"focus",
|
|
764
764
|
/*focus_handler*/
|
|
@@ -767,7 +767,7 @@ function zi(i) {
|
|
|
767
767
|
], C = !0);
|
|
768
768
|
},
|
|
769
769
|
p(m, [k]) {
|
|
770
|
-
|
|
770
|
+
G === (G = p(m, k)) && b ? b.p(m, k) : (b.d(1), b = G(m), b && (b.c(), b.m(e, a))), k & /*feature*/
|
|
771
771
|
1 && f !== (f = /*isReverse*/
|
|
772
772
|
(m[7] ? (
|
|
773
773
|
/*feature*/
|
|
@@ -775,7 +775,7 @@ function zi(i) {
|
|
|
775
775
|
) : (
|
|
776
776
|
/*feature*/
|
|
777
777
|
m[0].place_name.replace(/,.*/, "")
|
|
778
|
-
)) + "") &&
|
|
778
|
+
)) + "") && Re(h, f), k & /*showPlaceType, feature, imageUrl*/
|
|
779
779
|
37 && (_ = /*showPlaceType*/
|
|
780
780
|
m[2] === "always" || /*showPlaceType*/
|
|
781
781
|
m[2] && !/*feature*/
|
|
@@ -785,58 +785,58 @@ function zi(i) {
|
|
|
785
785
|
m[0].id.startsWith("postal_code.") && (!/*feature*/
|
|
786
786
|
m[0].id.startsWith("poi.") || !/*imageUrl*/
|
|
787
787
|
m[5]) && !/*isReverse*/
|
|
788
|
-
m[7]), _ ? g ? g.p(m, k) : (g =
|
|
788
|
+
m[7]), _ ? g ? g.p(m, k) : (g = _t(m), g.c(), g.m(d, null)) : g && (g.d(1), g = null), k & /*feature*/
|
|
789
789
|
1 && y !== (y = /*isReverse*/
|
|
790
790
|
(m[7] ? "" : (
|
|
791
791
|
/*feature*/
|
|
792
792
|
m[0].place_name.replace(/[^,]*,?\s*/, "")
|
|
793
|
-
)) + "") &&
|
|
793
|
+
)) + "") && Re(E, y), k & /*selected*/
|
|
794
794
|
2 && l(
|
|
795
795
|
e,
|
|
796
796
|
"data-selected",
|
|
797
797
|
/*selected*/
|
|
798
798
|
m[1]
|
|
799
799
|
), k & /*selected*/
|
|
800
|
-
2 &&
|
|
800
|
+
2 && ce(
|
|
801
801
|
e,
|
|
802
802
|
"selected",
|
|
803
803
|
/*selected*/
|
|
804
804
|
m[1]
|
|
805
805
|
);
|
|
806
806
|
},
|
|
807
|
-
i:
|
|
808
|
-
o:
|
|
807
|
+
i: I,
|
|
808
|
+
o: I,
|
|
809
809
|
d(m) {
|
|
810
|
-
m &&
|
|
810
|
+
m && O(e), b.d(), g && g.d(), C = !1, ae(R);
|
|
811
811
|
}
|
|
812
812
|
};
|
|
813
813
|
}
|
|
814
|
-
function
|
|
815
|
-
var
|
|
814
|
+
function qi(i, e, t) {
|
|
815
|
+
var R;
|
|
816
816
|
let r, o, { feature: u } = e, { selected: a = !1 } = e, { showPlaceType: n } = e, { missingIconsCache: d } = e, { iconsBaseUrl: c } = e;
|
|
817
|
-
const f = (
|
|
817
|
+
const f = (R = u.properties) == null ? void 0 : R.categories;
|
|
818
818
|
let h, v, _ = 0, w = u.place_type[0] === "reverse";
|
|
819
819
|
function W() {
|
|
820
820
|
v && d.add(v), t(10, _++, _);
|
|
821
821
|
}
|
|
822
822
|
function y(p) {
|
|
823
|
-
|
|
823
|
+
bt.call(this, i, p);
|
|
824
824
|
}
|
|
825
825
|
function E(p) {
|
|
826
|
-
|
|
826
|
+
bt.call(this, i, p);
|
|
827
827
|
}
|
|
828
828
|
const C = () => W();
|
|
829
829
|
return i.$$set = (p) => {
|
|
830
830
|
"feature" in p && t(0, u = p.feature), "selected" in p && t(1, a = p.selected), "showPlaceType" in p && t(2, n = p.showPlaceType), "missingIconsCache" in p && t(9, d = p.missingIconsCache), "iconsBaseUrl" in p && t(3, c = p.iconsBaseUrl);
|
|
831
831
|
}, i.$$.update = () => {
|
|
832
|
-
var p,
|
|
832
|
+
var p, G, b, g;
|
|
833
833
|
if (i.$$.dirty & /*loadIconAttempt, index, category, iconsBaseUrl, imageUrl, missingIconsCache*/
|
|
834
834
|
3640)
|
|
835
835
|
do
|
|
836
836
|
t(11, r--, r), t(4, h = f == null ? void 0 : f[r]), t(5, v = h ? c + h.replace(/ /g, "_") + ".svg" : void 0);
|
|
837
837
|
while (r > -1 && (!v || d.has(v)));
|
|
838
838
|
i.$$.dirty & /*feature*/
|
|
839
|
-
1 && t(6, o = ((
|
|
839
|
+
1 && t(6, o = ((G = (p = u.properties) == null ? void 0 : p.categories) == null ? void 0 : G.join(", ")) ?? ((g = (b = u.properties) == null ? void 0 : b.place_type_name) == null ? void 0 : g[0]) ?? u.place_type[0]);
|
|
840
840
|
}, t(11, r = (f == null ? void 0 : f.length) ?? 0), [
|
|
841
841
|
u,
|
|
842
842
|
a,
|
|
@@ -855,9 +855,9 @@ function Hi(i, e, t) {
|
|
|
855
855
|
C
|
|
856
856
|
];
|
|
857
857
|
}
|
|
858
|
-
class
|
|
858
|
+
class Qi extends Le {
|
|
859
859
|
constructor(e) {
|
|
860
|
-
super(),
|
|
860
|
+
super(), ve(this, e, qi, Gi, be, {
|
|
861
861
|
feature: 0,
|
|
862
862
|
selected: 1,
|
|
863
863
|
showPlaceType: 2,
|
|
@@ -866,92 +866,92 @@ class ji extends be {
|
|
|
866
866
|
});
|
|
867
867
|
}
|
|
868
868
|
}
|
|
869
|
-
function
|
|
869
|
+
function xi(i) {
|
|
870
870
|
let e;
|
|
871
871
|
return {
|
|
872
872
|
c() {
|
|
873
|
-
e =
|
|
873
|
+
e = z("div"), e.innerHTML = '<svg viewBox="0 0 18 18" width="24" height="24" class="svelte-7cmwmc"><path fill="#333" d="M4.4 4.4l.8.8c2.1-2.1 5.5-2.1 7.6 0l.8-.8c-2.5-2.5-6.7-2.5-9.2 0z"></path><path opacity=".1" d="M12.8 12.9c-2.1 2.1-5.5 2.1-7.6 0-2.1-2.1-2.1-5.5 0-7.7l-.8-.8c-2.5 2.5-2.5 6.7 0 9.2s6.6 2.5 9.2 0 2.5-6.6 0-9.2l-.8.8c2.2 2.1 2.2 5.6 0 7.7z"></path></svg>', l(e, "class", "svelte-7cmwmc");
|
|
874
874
|
},
|
|
875
875
|
m(t, r) {
|
|
876
|
-
|
|
876
|
+
A(t, e, r);
|
|
877
877
|
},
|
|
878
|
-
p:
|
|
879
|
-
i:
|
|
880
|
-
o:
|
|
878
|
+
p: I,
|
|
879
|
+
i: I,
|
|
880
|
+
o: I,
|
|
881
881
|
d(t) {
|
|
882
|
-
t &&
|
|
882
|
+
t && O(e);
|
|
883
883
|
}
|
|
884
884
|
};
|
|
885
885
|
}
|
|
886
|
-
class
|
|
886
|
+
class Ki extends Le {
|
|
887
887
|
constructor(e) {
|
|
888
|
-
super(),
|
|
888
|
+
super(), ve(this, e, null, xi, be, {});
|
|
889
889
|
}
|
|
890
890
|
}
|
|
891
|
-
function
|
|
891
|
+
function Vi(i) {
|
|
892
892
|
let e, t;
|
|
893
893
|
return {
|
|
894
894
|
c() {
|
|
895
895
|
e = ne("svg"), t = ne("path"), l(t, "d", "M30.003-26.765C13.46-26.765 0-14.158 0 1.337c0 23.286 24.535 42.952 28.39 46.04.24.192.402.316.471.376.323.282.732.424 1.142.424.41 0 .82-.142 1.142-.424.068-.06.231-.183.471-.376 3.856-3.09 28.39-22.754 28.39-46.04 0-15.495-13.46-28.102-30.003-28.102Zm1.757 12.469c4.38 0 7.858 1.052 10.431 3.158 2.595 2.105 3.89 4.913 3.89 8.422 0 2.34-.53 4.362-1.593 6.063-1.063 1.702-3.086 3.616-6.063 5.742-2.042 1.51-3.337 2.659-3.89 3.446-.532.787-.8 1.82-.8 3.096v1.914h-8.449V15.18c0-2.041.434-3.815 1.306-5.325.872-1.51 2.467-3.118 4.785-4.82 2.233-1.594 3.7-2.89 4.402-3.889a5.582 5.582 0 0 0 1.087-3.35c0-1.382-.51-2.435-1.531-3.158-1.02-.723-2.45-1.087-4.28-1.087-3.19 0-6.826 1.047-10.91 3.131l-3.472-6.986c4.742-2.659 9.77-3.992 15.087-3.992Zm-1.88 37.324c1.765 0 3.124.472 4.08 1.408.98.936 1.47 2.276 1.47 4.02 0 1.68-.49 3.007-1.47 3.985-.977.957-2.336 1.435-4.08 1.435-1.787 0-3.171-.465-4.15-1.4-.978-.958-1.47-2.298-1.47-4.02 0-1.787.48-3.14 1.436-4.054.957-.915 2.355-1.374 4.184-1.374Z"), l(e, "viewBox", "0 0 60.006 21.412"), l(e, "width", "14"), l(e, "height", "20"), l(e, "class", "svelte-en2qvf");
|
|
896
896
|
},
|
|
897
897
|
m(r, o) {
|
|
898
|
-
|
|
898
|
+
A(r, e, o), M(e, t);
|
|
899
899
|
},
|
|
900
|
-
p:
|
|
901
|
-
i:
|
|
902
|
-
o:
|
|
900
|
+
p: I,
|
|
901
|
+
i: I,
|
|
902
|
+
o: I,
|
|
903
903
|
d(r) {
|
|
904
|
-
r &&
|
|
904
|
+
r && O(e);
|
|
905
905
|
}
|
|
906
906
|
};
|
|
907
907
|
}
|
|
908
|
-
class
|
|
908
|
+
class Ji extends Le {
|
|
909
909
|
constructor(e) {
|
|
910
|
-
super(),
|
|
910
|
+
super(), ve(this, e, null, Vi, be, {});
|
|
911
911
|
}
|
|
912
912
|
}
|
|
913
|
-
function
|
|
913
|
+
function Xi(i) {
|
|
914
914
|
let e, t, r;
|
|
915
915
|
return {
|
|
916
916
|
c() {
|
|
917
917
|
e = ne("svg"), t = ne("circle"), r = ne("path"), l(t, "cx", "4.789"), l(t, "cy", "4.787"), l(t, "r", "3.85"), l(t, "class", "svelte-1aq105l"), l(r, "d", "M12.063 12.063 7.635 7.635"), l(r, "class", "svelte-1aq105l"), l(e, "xmlns", "http://www.w3.org/2000/svg"), l(e, "width", "13"), l(e, "height", "13"), l(e, "viewBox", "0 0 13 13"), l(e, "class", "svelte-1aq105l");
|
|
918
918
|
},
|
|
919
919
|
m(o, u) {
|
|
920
|
-
|
|
920
|
+
A(o, e, u), M(e, t), M(e, r);
|
|
921
921
|
},
|
|
922
|
-
p:
|
|
923
|
-
i:
|
|
924
|
-
o:
|
|
922
|
+
p: I,
|
|
923
|
+
i: I,
|
|
924
|
+
o: I,
|
|
925
925
|
d(o) {
|
|
926
|
-
o &&
|
|
926
|
+
o && O(e);
|
|
927
927
|
}
|
|
928
928
|
};
|
|
929
929
|
}
|
|
930
|
-
class
|
|
930
|
+
class Yi extends Le {
|
|
931
931
|
constructor(e) {
|
|
932
|
-
super(),
|
|
932
|
+
super(), ve(this, e, null, Xi, be, {});
|
|
933
933
|
}
|
|
934
934
|
}
|
|
935
|
-
function
|
|
935
|
+
function $i(i, e, t) {
|
|
936
936
|
const r = e[1], o = e[0], u = r - o;
|
|
937
937
|
return i === r && t ? i : ((i - o) % u + u) % u + o;
|
|
938
938
|
}
|
|
939
|
-
function
|
|
939
|
+
function yt(i) {
|
|
940
940
|
const e = [...i];
|
|
941
941
|
return e[2] < e[0] && (Math.abs((e[0] + e[2] + 360) / 2) > Math.abs((e[0] - 360 + e[2]) / 2) ? e[0] -= 360 : e[2] += 360), e;
|
|
942
942
|
}
|
|
943
|
-
let
|
|
944
|
-
async function
|
|
943
|
+
let ke;
|
|
944
|
+
async function er(i, e, t) {
|
|
945
945
|
const r = i == null ? void 0 : i.getCenterAndZoom();
|
|
946
946
|
for (const o of e ?? [])
|
|
947
947
|
if (!(r && (o.minZoom != null && o.minZoom > r[0] || o.maxZoom != null && o.maxZoom < r[0]))) {
|
|
948
948
|
if (o.type === "fixed")
|
|
949
949
|
return o.coordinates.join(",");
|
|
950
950
|
e: if (o.type === "client-geolocation") {
|
|
951
|
-
if (
|
|
952
|
-
if (!
|
|
951
|
+
if (ke && o.cachedLocationExpiry && ke.time + o.cachedLocationExpiry > Date.now()) {
|
|
952
|
+
if (!ke.coords)
|
|
953
953
|
break e;
|
|
954
|
-
return
|
|
954
|
+
return ke.coords;
|
|
955
955
|
}
|
|
956
956
|
let u;
|
|
957
957
|
try {
|
|
@@ -972,7 +972,7 @@ async function xi(i, e, t) {
|
|
|
972
972
|
}), u;
|
|
973
973
|
} catch {
|
|
974
974
|
} finally {
|
|
975
|
-
o.cachedLocationExpiry && (
|
|
975
|
+
o.cachedLocationExpiry && (ke = {
|
|
976
976
|
time: Date.now(),
|
|
977
977
|
coords: u
|
|
978
978
|
});
|
|
@@ -986,8 +986,8 @@ async function xi(i, e, t) {
|
|
|
986
986
|
return r[1].toFixed(6) + "," + r[2].toFixed(6);
|
|
987
987
|
}
|
|
988
988
|
}
|
|
989
|
-
const
|
|
990
|
-
function
|
|
989
|
+
const tr = /^(NORTH|SOUTH|[NS])?\s*([+-]?[0-8]?[0-9])\s*([•º°\.:]|D(?:EG)?(?:REES)?)?\s*,?([6-9][0-9])\s*(['′´’\.:]|M(?:IN)?(?:UTES)?)?\s*(NORTH|SOUTH|[NS])?(?:\s*[,/;]\s*|\s*)(EAST|WEST|[EW])?\s*([+-]?[0-1]?[0-9]?[0-9])\s*([•º°\.:]|D(?:EG)?(?:REES)?)?\s*,?([6-9][0-9])\s*(['′´’\.:]|M(?:IN)?(?:UTES)?)?\s*(EAST|WEST|[EW])?$/i, wt = /^([+-]?[0-8]?[0-9])\s+([0-5]?[0-9]\.\d{3,})[\s,]{1,}([+-]?[0-1]?[0-9]?[0-9])\s+([0-5]?[0-9]\.\d{3,})$/, Et = /^(NORTH|SOUTH|[NS])?[\s]*([+-]?[0-8]?[0-9](?:[\.,]\d{3,}))[\s]*([•º°]?)[\s]*(NORTH|SOUTH|[NS])?[\s]*[,/;]?[\s]*(EAST|WEST|[EW])?[\s]*([+-]?[0-1]?[0-9]?[0-9](?:[\.,]\d{3,}))[\s]*([•º°]?)[\s]*(EAST|WEST|[EW])?$/i, St = /^(NORTH|SOUTH|[NS])?\s*([+-]?[0-8]?[0-9])\s*(\.)\s*([0-5]?[0-9])\s*(\.)\s*((?:[0-5]?[0-9])(?:[\.,]\d{1,3})?)?\s*(NORTH|SOUTH|[NS])?(?:\s*[,/;]\s*|\s*)(EAST|WEST|[EW])?\s*([+-]?[0-1]?[0-9]?[0-9])\s*(\.)\s*([0-5]?[0-9])\s*(\.)\s*((?:[0-5]?[0-9])(?:[\.,]\d{1,3})?)?\s*(EAST|WEST|[EW])?$/i, pt = /^(NORTH|SOUTH|[NS])?\s*([+-]?[0-8]?[0-9])\s*(D(?:EG)?(?:REES)?)\s*([0-5]?[0-9])\s*(M(?:IN)?(?:UTES)?)\s*((?:[0-5]?[0-9])(?:[\.,]\d{1,3})?)?\s*(S(?:EC)?(?:ONDS)?)?\s*(NORTH|SOUTH|[NS])?(?:\s*[,/;]\s*|\s*)(EAST|WEST|[EW])?\s*([+-]?[0-1]?[0-9]?[0-9])\s*(D(?:EG)?(?:REES)?)\s*([0-5]?[0-9])\s*(M(?:IN)?(?:UTES)?)\s*((?:[0-5]?[0-9])(?:[\.,]\d{1,3})?)?\s*(S(?:EC)?(?:ONDS)?)\s*(EAST|WEST|[EW])?$/i, Tt = /^(NORTH|SOUTH|[NS])?\s*([+-]?[0-8]?[0-9])\s*([•º°\.:]|D(?:EG)?(?:REES)?)?\s*,?([0-5]?[0-9](?:[\.,]\d{1,})?)?\s*(['′´’\.:]|M(?:IN)?(?:UTES)?)?\s*,?((?:[0-5]?[0-9])(?:[\.,]\d{1,3})?)?\s*(''|′′|’’|´´|["″”\.])?\s*(NORTH|SOUTH|[NS])?(?:\s*[,/;]\s*|\s*)(EAST|WEST|[EW])?\s*([+-]?[0-1]?[0-9]?[0-9])\s*([•º°\.:]|D(?:EG)?(?:REES)?)?\s*,?([0-5]?[0-9](?:[\.,]\d{1,})?)?\s*(['′´’\.:]|M(?:IN)?(?:UTES)?)?\s*,?((?:[0-5]?[0-9])(?:[\.,]\d{1,3})?)?\s*(''|′′|´´|’’|["″”\.])?\s*(EAST|WEST|[EW])?$/i;
|
|
990
|
+
function ir(i) {
|
|
991
991
|
if (!["DMS", "DM", "DD"].includes(i))
|
|
992
992
|
throw new Error("invalid format specified");
|
|
993
993
|
if (this.decimalCoordinates && this.decimalCoordinates.trim()) {
|
|
@@ -996,7 +996,7 @@ function Xi(i) {
|
|
|
996
996
|
i == "DD" && (d = `${o}° ${a}, ${u}° ${n}`);
|
|
997
997
|
const c = Math.floor(o), f = Math.floor(u), h = (o - c) * 60, v = (u - f) * 60;
|
|
998
998
|
if (i == "DM") {
|
|
999
|
-
let _ =
|
|
999
|
+
let _ = Nt(h, 3).toFixed(3).padStart(6, "0"), w = Nt(v, 3).toFixed(3).padStart(6, "0");
|
|
1000
1000
|
_.endsWith(".000") && w.endsWith(".000") && (_ = _.replace(/\.000$/, ""), w = w.replace(/\.000$/, "")), d = `${c}° ${_}' ${a}, ${f}° ${w}' ${n}`;
|
|
1001
1001
|
}
|
|
1002
1002
|
if (i == "DMS") {
|
|
@@ -1009,22 +1009,22 @@ function Xi(i) {
|
|
|
1009
1009
|
} else
|
|
1010
1010
|
throw new Error("no decimal coordinates to convert");
|
|
1011
1011
|
}
|
|
1012
|
-
function
|
|
1012
|
+
function Nt(i, e) {
|
|
1013
1013
|
const t = Math.pow(10, e);
|
|
1014
1014
|
return Math.round((i + Number.EPSILON) * t) / t;
|
|
1015
1015
|
}
|
|
1016
|
-
function
|
|
1016
|
+
function at(i, e) {
|
|
1017
1017
|
e || (e = 5), i = i.replace(/\s+/g, " ").trim();
|
|
1018
1018
|
let t = null, r = null, o = "", u = "", a = null, n = [], d = !1;
|
|
1019
|
-
if (
|
|
1019
|
+
if (tr.test(i))
|
|
1020
1020
|
throw new Error("invalid coordinate value");
|
|
1021
|
-
if (
|
|
1022
|
-
if (n =
|
|
1021
|
+
if (wt.test(i))
|
|
1022
|
+
if (n = wt.exec(i), d = Ce(n), d)
|
|
1023
1023
|
t = Math.abs(n[1]) + n[2] / 60, Number(n[1]) < 0 && (t *= -1), r = Math.abs(n[3]) + n[4] / 60, Number(n[3]) < 0 && (r *= -1), a = "DM";
|
|
1024
1024
|
else
|
|
1025
1025
|
throw new Error("invalid coordinate format");
|
|
1026
|
-
else if (
|
|
1027
|
-
if (n =
|
|
1026
|
+
else if (Et.test(i))
|
|
1027
|
+
if (n = Et.exec(i), d = Ce(n), d) {
|
|
1028
1028
|
if (t = n[2], r = n[6], t.includes(",") && (t = t.replace(",", ".")), r.includes(",") && (r = r.replace(",", ".")), a = "DD", Number(Math.round(t)) == Number(t))
|
|
1029
1029
|
throw new Error("integer only coordinate provided");
|
|
1030
1030
|
if (Number(Math.round(r)) == Number(r))
|
|
@@ -1032,18 +1032,18 @@ function rt(i, e) {
|
|
|
1032
1032
|
n[1] ? (o = n[1], u = n[5]) : n[4] && (o = n[4], u = n[8]);
|
|
1033
1033
|
} else
|
|
1034
1034
|
throw new Error("invalid decimal coordinate format");
|
|
1035
|
-
else if (
|
|
1036
|
-
if (n =
|
|
1035
|
+
else if (St.test(i))
|
|
1036
|
+
if (n = St.exec(i), d = Ce(n), d)
|
|
1037
1037
|
t = Math.abs(parseInt(n[2])), n[4] && (t += n[4] / 60, a = "DM"), n[6] && (t += n[6].replace(",", ".") / 3600, a = "DMS"), parseInt(n[2]) < 0 && (t = -1 * t), r = Math.abs(parseInt(n[9])), n[11] && (r += n[11] / 60), n[13] && (r += n[13].replace(",", ".") / 3600), parseInt(n[9]) < 0 && (r = -1 * r), n[1] ? (o = n[1], u = n[8]) : n[7] && (o = n[7], u = n[14]);
|
|
1038
1038
|
else
|
|
1039
1039
|
throw new Error("invalid DMS coordinates format");
|
|
1040
|
-
else if (
|
|
1041
|
-
if (n =
|
|
1040
|
+
else if (pt.test(i))
|
|
1041
|
+
if (n = pt.exec(i), d = Ce(n), d)
|
|
1042
1042
|
t = Math.abs(parseInt(n[2])), n[4] && (t += n[4] / 60, a = "DM"), n[6] && (t += n[6] / 3600, a = "DMS"), parseInt(n[2]) < 0 && (t = -1 * t), r = Math.abs(parseInt(n[10])), n[12] && (r += n[12] / 60), n[14] && (r += n[14] / 3600), parseInt(n[10]) < 0 && (r = -1 * r), n[1] ? (o = n[1], u = n[9]) : n[8] && (o = n[8], u = n[16]);
|
|
1043
1043
|
else
|
|
1044
1044
|
throw new Error("invalid DMS coordinates format");
|
|
1045
|
-
else if (
|
|
1046
|
-
if (n =
|
|
1045
|
+
else if (Tt.test(i)) {
|
|
1046
|
+
if (n = Tt.exec(i), d = Ce(n), n.filter((c) => c).length <= 5)
|
|
1047
1047
|
throw new Error("invalid coordinates format");
|
|
1048
1048
|
if (d)
|
|
1049
1049
|
t = Math.abs(parseInt(n[2])), n[4] && (t += n[4].replace(",", ".") / 60, a = "DM"), n[6] && (t += n[6].replace(",", ".") / 3600, a = "DMS"), parseInt(n[2]) < 0 && (t = -1 * t), r = Math.abs(parseInt(n[10])), n[12] && (r += n[12].replace(",", ".") / 60), n[14] && (r += n[14].replace(",", ".") / 3600), parseInt(n[10]) < 0 && (r = -1 * r), n[1] ? (o = n[1], u = n[9]) : n[8] && (o = n[8], u = n[16]);
|
|
@@ -1075,9 +1075,9 @@ function rt(i, e) {
|
|
|
1075
1075
|
if (E == 0)
|
|
1076
1076
|
C = f.indexOf(w[0]), h = f.substring(0, C).trim(), v = f.substring(C + 1).trim();
|
|
1077
1077
|
else {
|
|
1078
|
-
let
|
|
1079
|
-
for (;
|
|
1080
|
-
C = f.indexOf(w[
|
|
1078
|
+
let R = 0, p = 0;
|
|
1079
|
+
for (; R <= E; )
|
|
1080
|
+
C = f.indexOf(w[R], p), p = C + 1, R++;
|
|
1081
1081
|
h = f.substring(0, C).trim(), v = f.substring(C + 1).trim();
|
|
1082
1082
|
}
|
|
1083
1083
|
}
|
|
@@ -1097,13 +1097,13 @@ function rt(i, e) {
|
|
|
1097
1097
|
decimalLongitude: r,
|
|
1098
1098
|
decimalCoordinates: `${t},${r}`,
|
|
1099
1099
|
originalFormat: a,
|
|
1100
|
-
closeEnough:
|
|
1101
|
-
toCoordinateFormat:
|
|
1100
|
+
closeEnough: rr,
|
|
1101
|
+
toCoordinateFormat: ir
|
|
1102
1102
|
});
|
|
1103
1103
|
} else
|
|
1104
1104
|
throw new Error("coordinates pattern match failed");
|
|
1105
1105
|
}
|
|
1106
|
-
function
|
|
1106
|
+
function Ce(i) {
|
|
1107
1107
|
if (!isNaN(i[0]))
|
|
1108
1108
|
return !1;
|
|
1109
1109
|
const e = [...i];
|
|
@@ -1122,28 +1122,28 @@ function Ne(i) {
|
|
|
1122
1122
|
}
|
|
1123
1123
|
return !0;
|
|
1124
1124
|
}
|
|
1125
|
-
function
|
|
1125
|
+
function Mt(i, e) {
|
|
1126
1126
|
const t = Math.abs(i - e);
|
|
1127
1127
|
return Number(t.toFixed(6)) <= 1e-5;
|
|
1128
1128
|
}
|
|
1129
|
-
function
|
|
1129
|
+
function rr(i) {
|
|
1130
1130
|
if (!i)
|
|
1131
1131
|
throw new Error("coords must be provided");
|
|
1132
1132
|
if (i.includes(",")) {
|
|
1133
1133
|
const e = i.split(",");
|
|
1134
1134
|
if (Number(e[0]) == NaN || Number(e[1]) == NaN)
|
|
1135
1135
|
throw new Error("coords are not valid decimals");
|
|
1136
|
-
return
|
|
1136
|
+
return Mt(this.decimalLatitude, Number(e[0])) && Mt(this.decimalLongitude, e[1]);
|
|
1137
1137
|
} else
|
|
1138
1138
|
throw new Error("coords being tested must be separated by a comma");
|
|
1139
1139
|
}
|
|
1140
|
-
const
|
|
1140
|
+
const nr = Object.freeze({
|
|
1141
1141
|
DMS: "DMS",
|
|
1142
1142
|
DM: "DM",
|
|
1143
1143
|
DD: "DD"
|
|
1144
1144
|
});
|
|
1145
|
-
|
|
1146
|
-
const
|
|
1145
|
+
at.to = nr;
|
|
1146
|
+
const or = [
|
|
1147
1147
|
{
|
|
1148
1148
|
verbatimCoordinates: "40.123, -74.123",
|
|
1149
1149
|
verbatimLatitude: "40.123",
|
|
@@ -1284,10 +1284,10 @@ const er = [
|
|
|
1284
1284
|
verbatimLatitude: "40 7 22.8",
|
|
1285
1285
|
verbatimLongitude: "-74 7 22.8"
|
|
1286
1286
|
}
|
|
1287
|
-
],
|
|
1287
|
+
], sr = {
|
|
1288
1288
|
decimalLatitude: 40.123,
|
|
1289
1289
|
decimalLongitude: -74.123
|
|
1290
|
-
},
|
|
1290
|
+
}, ar = [
|
|
1291
1291
|
{
|
|
1292
1292
|
verbatimCoordinates: `50°4'17.698"south, 14°24'2.826"east`,
|
|
1293
1293
|
verbatimLatitude: `50°4'17.698"south`,
|
|
@@ -1372,7 +1372,7 @@ const er = [
|
|
|
1372
1372
|
decimalLatitude: -18.4,
|
|
1373
1373
|
decimalLongitude: 22.75
|
|
1374
1374
|
}
|
|
1375
|
-
],
|
|
1375
|
+
], lr = [
|
|
1376
1376
|
{
|
|
1377
1377
|
verbatimCoordinates: "10.432342S 10.6345345E",
|
|
1378
1378
|
verbatimLatitude: "10.432342S",
|
|
@@ -1507,30 +1507,30 @@ const er = [
|
|
|
1507
1507
|
decimalLongitude: 18.33453
|
|
1508
1508
|
}
|
|
1509
1509
|
];
|
|
1510
|
-
function
|
|
1510
|
+
function ur() {
|
|
1511
1511
|
const i = [];
|
|
1512
|
-
return
|
|
1513
|
-
e.decimalLatitude ? i.push(e) : i.push({ ...e, ...
|
|
1514
|
-
}), [...i, ...
|
|
1515
|
-
}
|
|
1516
|
-
const
|
|
1517
|
-
|
|
1518
|
-
const
|
|
1519
|
-
function
|
|
1512
|
+
return or.forEach((e) => {
|
|
1513
|
+
e.decimalLatitude ? i.push(e) : i.push({ ...e, ...sr });
|
|
1514
|
+
}), [...i, ...ar, ...lr];
|
|
1515
|
+
}
|
|
1516
|
+
const cr = ur();
|
|
1517
|
+
at.formats = cr.map((i) => i.verbatimCoordinates);
|
|
1518
|
+
const dr = at;
|
|
1519
|
+
function kt(i, e, t) {
|
|
1520
1520
|
const r = i.slice();
|
|
1521
|
-
return r[
|
|
1521
|
+
return r[87] = e[t], r[89] = t, r;
|
|
1522
1522
|
}
|
|
1523
|
-
function
|
|
1523
|
+
function Ct(i) {
|
|
1524
1524
|
let e, t;
|
|
1525
|
-
return e = new
|
|
1525
|
+
return e = new Ki({}), {
|
|
1526
1526
|
c() {
|
|
1527
|
-
|
|
1527
|
+
fe(e.$$.fragment);
|
|
1528
1528
|
},
|
|
1529
1529
|
m(r, o) {
|
|
1530
1530
|
oe(e, r, o), t = !0;
|
|
1531
1531
|
},
|
|
1532
1532
|
i(r) {
|
|
1533
|
-
t || (
|
|
1533
|
+
t || (H(e.$$.fragment, r), t = !0);
|
|
1534
1534
|
},
|
|
1535
1535
|
o(r) {
|
|
1536
1536
|
Q(e.$$.fragment, r), t = !1;
|
|
@@ -1540,16 +1540,16 @@ function Nt(i) {
|
|
|
1540
1540
|
}
|
|
1541
1541
|
};
|
|
1542
1542
|
}
|
|
1543
|
-
function
|
|
1543
|
+
function Wt(i) {
|
|
1544
1544
|
let e, t, r, o, u;
|
|
1545
|
-
return t = new
|
|
1545
|
+
return t = new Ji({}), {
|
|
1546
1546
|
c() {
|
|
1547
|
-
e =
|
|
1547
|
+
e = z("button"), fe(t.$$.fragment), l(e, "type", "button"), l(
|
|
1548
1548
|
e,
|
|
1549
1549
|
"title",
|
|
1550
1550
|
/*reverseButtonTitle*/
|
|
1551
1551
|
i[9]
|
|
1552
|
-
), l(e, "class", "svelte-
|
|
1552
|
+
), l(e, "class", "svelte-bz0zu3"), ce(
|
|
1553
1553
|
e,
|
|
1554
1554
|
"active",
|
|
1555
1555
|
/*reverseActive*/
|
|
@@ -1557,11 +1557,11 @@ function Mt(i) {
|
|
|
1557
1557
|
);
|
|
1558
1558
|
},
|
|
1559
1559
|
m(a, n) {
|
|
1560
|
-
|
|
1560
|
+
A(a, e, n), oe(t, e, null), r = !0, o || (u = K(
|
|
1561
1561
|
e,
|
|
1562
1562
|
"click",
|
|
1563
1563
|
/*click_handler_2*/
|
|
1564
|
-
i[
|
|
1564
|
+
i[71]
|
|
1565
1565
|
), o = !0);
|
|
1566
1566
|
},
|
|
1567
1567
|
p(a, n) {
|
|
@@ -1572,7 +1572,7 @@ function Mt(i) {
|
|
|
1572
1572
|
/*reverseButtonTitle*/
|
|
1573
1573
|
a[9]
|
|
1574
1574
|
), (!r || n[0] & /*reverseActive*/
|
|
1575
|
-
1) &&
|
|
1575
|
+
1) && ce(
|
|
1576
1576
|
e,
|
|
1577
1577
|
"active",
|
|
1578
1578
|
/*reverseActive*/
|
|
@@ -1580,68 +1580,68 @@ function Mt(i) {
|
|
|
1580
1580
|
);
|
|
1581
1581
|
},
|
|
1582
1582
|
i(a) {
|
|
1583
|
-
r || (
|
|
1583
|
+
r || (H(t.$$.fragment, a), r = !0);
|
|
1584
1584
|
},
|
|
1585
1585
|
o(a) {
|
|
1586
1586
|
Q(t.$$.fragment, a), r = !1;
|
|
1587
1587
|
},
|
|
1588
1588
|
d(a) {
|
|
1589
|
-
a &&
|
|
1589
|
+
a && O(e), se(t), o = !1, u();
|
|
1590
1590
|
}
|
|
1591
1591
|
};
|
|
1592
1592
|
}
|
|
1593
|
-
function
|
|
1594
|
-
let e, t = [], r = /* @__PURE__ */ new Map(), o, u, a, n =
|
|
1593
|
+
function fr(i) {
|
|
1594
|
+
let e, t = [], r = /* @__PURE__ */ new Map(), o, u, a, n = Lt(
|
|
1595
1595
|
/*listFeatures*/
|
|
1596
1596
|
i[14]
|
|
1597
1597
|
);
|
|
1598
1598
|
const d = (c) => (
|
|
1599
1599
|
/*feature*/
|
|
1600
|
-
c[
|
|
1601
|
-
(c[
|
|
1602
|
-
c[
|
|
1600
|
+
c[87].id + /*feature*/
|
|
1601
|
+
(c[87].address ? "," + /*feature*/
|
|
1602
|
+
c[87].address : "")
|
|
1603
1603
|
);
|
|
1604
1604
|
for (let c = 0; c < n.length; c += 1) {
|
|
1605
|
-
let f =
|
|
1606
|
-
r.set(h, t[c] =
|
|
1605
|
+
let f = kt(i, n, c), h = d(f);
|
|
1606
|
+
r.set(h, t[c] = Rt(h, f));
|
|
1607
1607
|
}
|
|
1608
1608
|
return {
|
|
1609
1609
|
c() {
|
|
1610
|
-
e =
|
|
1610
|
+
e = z("ul");
|
|
1611
1611
|
for (let c = 0; c < t.length; c += 1)
|
|
1612
1612
|
t[c].c();
|
|
1613
|
-
l(e, "class", "svelte-
|
|
1613
|
+
l(e, "class", "options svelte-bz0zu3");
|
|
1614
1614
|
},
|
|
1615
1615
|
m(c, f) {
|
|
1616
|
-
|
|
1616
|
+
A(c, e, f);
|
|
1617
1617
|
for (let h = 0; h < t.length; h += 1)
|
|
1618
1618
|
t[h] && t[h].m(e, null);
|
|
1619
1619
|
o = !0, u || (a = [
|
|
1620
|
-
|
|
1620
|
+
K(
|
|
1621
1621
|
e,
|
|
1622
1622
|
"mouseleave",
|
|
1623
1623
|
/*mouseleave_handler*/
|
|
1624
|
-
i[
|
|
1624
|
+
i[75]
|
|
1625
1625
|
),
|
|
1626
|
-
|
|
1626
|
+
K(
|
|
1627
1627
|
e,
|
|
1628
1628
|
"blur",
|
|
1629
1629
|
/*blur_handler_1*/
|
|
1630
|
-
i[
|
|
1630
|
+
i[76]
|
|
1631
1631
|
)
|
|
1632
1632
|
], u = !0);
|
|
1633
1633
|
},
|
|
1634
1634
|
p(c, f) {
|
|
1635
1635
|
f[0] & /*listFeatures, showPlaceType, selectedItemIndex, missingIconsCache, iconsBaseUrl, pick*/
|
|
1636
|
-
17880064 && (n =
|
|
1636
|
+
17880064 && (n = Lt(
|
|
1637
1637
|
/*listFeatures*/
|
|
1638
1638
|
c[14]
|
|
1639
|
-
),
|
|
1639
|
+
), Pe(), t = Ri(t, f, d, 1, c, n, r, e, Wi, Rt, null, kt), Ze());
|
|
1640
1640
|
},
|
|
1641
1641
|
i(c) {
|
|
1642
1642
|
if (!o) {
|
|
1643
1643
|
for (let f = 0; f < n.length; f += 1)
|
|
1644
|
-
|
|
1644
|
+
H(t[f]);
|
|
1645
1645
|
o = !0;
|
|
1646
1646
|
}
|
|
1647
1647
|
},
|
|
@@ -1651,122 +1651,122 @@ function ar(i) {
|
|
|
1651
1651
|
o = !1;
|
|
1652
1652
|
},
|
|
1653
1653
|
d(c) {
|
|
1654
|
-
c &&
|
|
1654
|
+
c && O(e);
|
|
1655
1655
|
for (let f = 0; f < t.length; f += 1)
|
|
1656
1656
|
t[f].d();
|
|
1657
1657
|
u = !1, ae(a);
|
|
1658
1658
|
}
|
|
1659
1659
|
};
|
|
1660
1660
|
}
|
|
1661
|
-
function
|
|
1661
|
+
function mr(i) {
|
|
1662
1662
|
let e, t, r, o, u, a;
|
|
1663
|
-
return t = new
|
|
1663
|
+
return t = new Ht({}), {
|
|
1664
1664
|
c() {
|
|
1665
|
-
e =
|
|
1665
|
+
e = z("div"), fe(t.$$.fragment), r = J(), o = z("div"), u = de(
|
|
1666
1666
|
/*noResultsMessage*/
|
|
1667
1667
|
i[7]
|
|
1668
|
-
), l(o, "class", "svelte-
|
|
1668
|
+
), l(o, "class", "svelte-bz0zu3"), l(e, "class", "no-results svelte-bz0zu3");
|
|
1669
1669
|
},
|
|
1670
1670
|
m(n, d) {
|
|
1671
|
-
|
|
1671
|
+
A(n, e, d), oe(t, e, null), M(e, r), M(e, o), M(o, u), a = !0;
|
|
1672
1672
|
},
|
|
1673
1673
|
p(n, d) {
|
|
1674
1674
|
(!a || d[0] & /*noResultsMessage*/
|
|
1675
|
-
128) &&
|
|
1675
|
+
128) && Re(
|
|
1676
1676
|
u,
|
|
1677
1677
|
/*noResultsMessage*/
|
|
1678
1678
|
n[7]
|
|
1679
1679
|
);
|
|
1680
1680
|
},
|
|
1681
1681
|
i(n) {
|
|
1682
|
-
a || (
|
|
1682
|
+
a || (H(t.$$.fragment, n), a = !0);
|
|
1683
1683
|
},
|
|
1684
1684
|
o(n) {
|
|
1685
1685
|
Q(t.$$.fragment, n), a = !1;
|
|
1686
1686
|
},
|
|
1687
1687
|
d(n) {
|
|
1688
|
-
n &&
|
|
1688
|
+
n && O(e), se(t);
|
|
1689
1689
|
}
|
|
1690
1690
|
};
|
|
1691
1691
|
}
|
|
1692
|
-
function
|
|
1692
|
+
function gr(i) {
|
|
1693
1693
|
let e = "", t;
|
|
1694
1694
|
return {
|
|
1695
1695
|
c() {
|
|
1696
|
-
t =
|
|
1696
|
+
t = de(e);
|
|
1697
1697
|
},
|
|
1698
1698
|
m(r, o) {
|
|
1699
|
-
|
|
1699
|
+
A(r, t, o);
|
|
1700
1700
|
},
|
|
1701
|
-
p:
|
|
1702
|
-
i:
|
|
1703
|
-
o:
|
|
1701
|
+
p: I,
|
|
1702
|
+
i: I,
|
|
1703
|
+
o: I,
|
|
1704
1704
|
d(r) {
|
|
1705
|
-
r &&
|
|
1705
|
+
r && O(t);
|
|
1706
1706
|
}
|
|
1707
1707
|
};
|
|
1708
1708
|
}
|
|
1709
|
-
function
|
|
1709
|
+
function hr(i) {
|
|
1710
1710
|
let e, t, r, o, u, a, n, d, c, f, h;
|
|
1711
|
-
return t = new
|
|
1711
|
+
return t = new Ht({}), d = new Ft({}), {
|
|
1712
1712
|
c() {
|
|
1713
|
-
e =
|
|
1713
|
+
e = z("div"), fe(t.$$.fragment), r = J(), o = z("div"), u = de(
|
|
1714
1714
|
/*errorMessage*/
|
|
1715
1715
|
i[6]
|
|
1716
|
-
), a = J(), n =
|
|
1716
|
+
), a = J(), n = z("button"), fe(d.$$.fragment), l(o, "class", "svelte-bz0zu3"), l(n, "class", "svelte-bz0zu3"), l(e, "class", "error svelte-bz0zu3");
|
|
1717
1717
|
},
|
|
1718
1718
|
m(v, _) {
|
|
1719
|
-
|
|
1719
|
+
A(v, e, _), oe(t, e, null), M(e, r), M(e, o), M(o, u), M(e, a), M(e, n), oe(d, n, null), c = !0, f || (h = K(
|
|
1720
1720
|
n,
|
|
1721
1721
|
"click",
|
|
1722
1722
|
/*click_handler_3*/
|
|
1723
|
-
i[
|
|
1723
|
+
i[72]
|
|
1724
1724
|
), f = !0);
|
|
1725
1725
|
},
|
|
1726
1726
|
p(v, _) {
|
|
1727
1727
|
(!c || _[0] & /*errorMessage*/
|
|
1728
|
-
64) &&
|
|
1728
|
+
64) && Re(
|
|
1729
1729
|
u,
|
|
1730
1730
|
/*errorMessage*/
|
|
1731
1731
|
v[6]
|
|
1732
1732
|
);
|
|
1733
1733
|
},
|
|
1734
1734
|
i(v) {
|
|
1735
|
-
c || (
|
|
1735
|
+
c || (H(t.$$.fragment, v), H(d.$$.fragment, v), c = !0);
|
|
1736
1736
|
},
|
|
1737
1737
|
o(v) {
|
|
1738
1738
|
Q(t.$$.fragment, v), Q(d.$$.fragment, v), c = !1;
|
|
1739
1739
|
},
|
|
1740
1740
|
d(v) {
|
|
1741
|
-
v &&
|
|
1741
|
+
v && O(e), se(t), se(d), f = !1, h();
|
|
1742
1742
|
}
|
|
1743
1743
|
};
|
|
1744
1744
|
}
|
|
1745
|
-
function
|
|
1745
|
+
function Rt(i, e) {
|
|
1746
1746
|
let t, r, o;
|
|
1747
1747
|
function u() {
|
|
1748
1748
|
return (
|
|
1749
1749
|
/*mouseenter_handler*/
|
|
1750
|
-
e[
|
|
1750
|
+
e[73](
|
|
1751
1751
|
/*i*/
|
|
1752
|
-
e[
|
|
1752
|
+
e[89]
|
|
1753
1753
|
)
|
|
1754
1754
|
);
|
|
1755
1755
|
}
|
|
1756
1756
|
function a() {
|
|
1757
1757
|
return (
|
|
1758
1758
|
/*focus_handler_1*/
|
|
1759
|
-
e[
|
|
1759
|
+
e[74](
|
|
1760
1760
|
/*feature*/
|
|
1761
|
-
e[
|
|
1761
|
+
e[87]
|
|
1762
1762
|
)
|
|
1763
1763
|
);
|
|
1764
1764
|
}
|
|
1765
|
-
return r = new
|
|
1765
|
+
return r = new Qi({
|
|
1766
1766
|
props: {
|
|
1767
1767
|
feature: (
|
|
1768
1768
|
/*feature*/
|
|
1769
|
-
e[
|
|
1769
|
+
e[87]
|
|
1770
1770
|
),
|
|
1771
1771
|
showPlaceType: (
|
|
1772
1772
|
/*showPlaceType*/
|
|
@@ -1775,7 +1775,7 @@ function Tt(i, e) {
|
|
|
1775
1775
|
selected: (
|
|
1776
1776
|
/*selectedItemIndex*/
|
|
1777
1777
|
e[15] === /*i*/
|
|
1778
|
-
e[
|
|
1778
|
+
e[89]
|
|
1779
1779
|
),
|
|
1780
1780
|
missingIconsCache: (
|
|
1781
1781
|
/*missingIconsCache*/
|
|
@@ -1790,76 +1790,76 @@ function Tt(i, e) {
|
|
|
1790
1790
|
key: i,
|
|
1791
1791
|
first: null,
|
|
1792
1792
|
c() {
|
|
1793
|
-
t =
|
|
1793
|
+
t = yi(), fe(r.$$.fragment), this.first = t;
|
|
1794
1794
|
},
|
|
1795
1795
|
m(n, d) {
|
|
1796
|
-
|
|
1796
|
+
A(n, t, d), oe(r, n, d), o = !0;
|
|
1797
1797
|
},
|
|
1798
1798
|
p(n, d) {
|
|
1799
1799
|
e = n;
|
|
1800
1800
|
const c = {};
|
|
1801
1801
|
d[0] & /*listFeatures*/
|
|
1802
1802
|
16384 && (c.feature = /*feature*/
|
|
1803
|
-
e[
|
|
1803
|
+
e[87]), d[0] & /*showPlaceType*/
|
|
1804
1804
|
1024 && (c.showPlaceType = /*showPlaceType*/
|
|
1805
1805
|
e[10]), d[0] & /*selectedItemIndex, listFeatures*/
|
|
1806
1806
|
49152 && (c.selected = /*selectedItemIndex*/
|
|
1807
1807
|
e[15] === /*i*/
|
|
1808
|
-
e[
|
|
1808
|
+
e[89]), d[0] & /*iconsBaseUrl*/
|
|
1809
1809
|
4096 && (c.iconsBaseUrl = /*iconsBaseUrl*/
|
|
1810
1810
|
e[12]), r.$set(c);
|
|
1811
1811
|
},
|
|
1812
1812
|
i(n) {
|
|
1813
|
-
o || (
|
|
1813
|
+
o || (H(r.$$.fragment, n), o = !0);
|
|
1814
1814
|
},
|
|
1815
1815
|
o(n) {
|
|
1816
1816
|
Q(r.$$.fragment, n), o = !1;
|
|
1817
1817
|
},
|
|
1818
1818
|
d(n) {
|
|
1819
|
-
n &&
|
|
1819
|
+
n && O(t), se(r, n);
|
|
1820
1820
|
}
|
|
1821
1821
|
};
|
|
1822
1822
|
}
|
|
1823
|
-
function
|
|
1824
|
-
let e, t, r, o, u, a, n, d, c, f, h, v, _, w, W, y, E, C,
|
|
1825
|
-
u = new
|
|
1823
|
+
function br(i) {
|
|
1824
|
+
let e, t, r, o, u, a, n, d, c, f, h, v, _, w, W, y, E, C, R, p, G, b = !1;
|
|
1825
|
+
u = new Yi({}), h = new Ft({});
|
|
1826
1826
|
let g = (
|
|
1827
1827
|
/*abortController*/
|
|
1828
|
-
i[19] &&
|
|
1828
|
+
i[19] && Ct()
|
|
1829
1829
|
), m = (
|
|
1830
1830
|
/*enableReverse*/
|
|
1831
|
-
i[5] === !0 &&
|
|
1831
|
+
i[5] === !0 && Wt(i)
|
|
1832
1832
|
);
|
|
1833
1833
|
const k = (
|
|
1834
1834
|
/*#slots*/
|
|
1835
|
-
i[
|
|
1836
|
-
),
|
|
1835
|
+
i[63].default
|
|
1836
|
+
), j = bi(
|
|
1837
1837
|
k,
|
|
1838
1838
|
i,
|
|
1839
1839
|
/*$$scope*/
|
|
1840
|
-
i[
|
|
1840
|
+
i[62],
|
|
1841
1841
|
null
|
|
1842
|
-
), X = [
|
|
1843
|
-
function
|
|
1844
|
-
var
|
|
1842
|
+
), X = [hr, gr, mr, fr], ee = [];
|
|
1843
|
+
function B(L, F) {
|
|
1844
|
+
var te, _e;
|
|
1845
1845
|
return (
|
|
1846
1846
|
/*error*/
|
|
1847
1847
|
L[18] ? 0 : (
|
|
1848
1848
|
/*focusedDelayed*/
|
|
1849
1849
|
L[16] ? (
|
|
1850
1850
|
/*listFeatures*/
|
|
1851
|
-
((
|
|
1851
|
+
((te = L[14]) == null ? void 0 : te.length) === 0 ? 2 : (
|
|
1852
1852
|
/*focusedDelayed*/
|
|
1853
1853
|
L[16] && /*listFeatures*/
|
|
1854
|
-
((
|
|
1854
|
+
((_e = L[14]) != null && _e.length) ? 3 : -1
|
|
1855
1855
|
)
|
|
1856
1856
|
) : 1
|
|
1857
1857
|
)
|
|
1858
1858
|
);
|
|
1859
1859
|
}
|
|
1860
|
-
return ~(y =
|
|
1860
|
+
return ~(y = B(i)) && (E = ee[y] = X[y](i)), {
|
|
1861
1861
|
c() {
|
|
1862
|
-
e = J(), t =
|
|
1862
|
+
e = J(), t = z("form"), r = z("div"), o = z("button"), fe(u.$$.fragment), a = J(), n = z("input"), d = J(), c = z("div"), f = z("button"), fe(h.$$.fragment), v = J(), g && g.c(), _ = J(), m && m.c(), w = J(), j && j.c(), W = J(), E && E.c(), l(o, "class", "search-button svelte-bz0zu3"), l(o, "type", "button"), l(
|
|
1863
1863
|
n,
|
|
1864
1864
|
"placeholder",
|
|
1865
1865
|
/*placeholder*/
|
|
@@ -1869,20 +1869,20 @@ function dr(i) {
|
|
|
1869
1869
|
"aria-label",
|
|
1870
1870
|
/*placeholder*/
|
|
1871
1871
|
i[8]
|
|
1872
|
-
), l(n, "class", "svelte-
|
|
1872
|
+
), l(n, "class", "svelte-bz0zu3"), l(f, "type", "button"), l(
|
|
1873
1873
|
f,
|
|
1874
1874
|
"title",
|
|
1875
1875
|
/*clearButtonTitle*/
|
|
1876
1876
|
i[3]
|
|
1877
|
-
), l(f, "class", "svelte-
|
|
1877
|
+
), l(f, "class", "svelte-bz0zu3"), l(c, "class", "clear-button-container svelte-bz0zu3"), ce(
|
|
1878
1878
|
c,
|
|
1879
1879
|
"displayable",
|
|
1880
1880
|
/*searchValue*/
|
|
1881
1881
|
i[1] !== ""
|
|
1882
|
-
), l(r, "class", "input-group svelte-
|
|
1882
|
+
), l(r, "class", "input-group svelte-bz0zu3"), l(t, "tabindex", "0"), l(t, "class", C = gt(
|
|
1883
1883
|
/*className*/
|
|
1884
1884
|
i[2]
|
|
1885
|
-
) + " svelte-
|
|
1885
|
+
) + " svelte-bz0zu3"), ce(
|
|
1886
1886
|
t,
|
|
1887
1887
|
"can-collapse",
|
|
1888
1888
|
/*collapsed*/
|
|
@@ -1891,67 +1891,67 @@ function dr(i) {
|
|
|
1891
1891
|
);
|
|
1892
1892
|
},
|
|
1893
1893
|
m(L, F) {
|
|
1894
|
-
|
|
1894
|
+
A(L, e, F), A(L, t, F), M(t, r), M(r, o), oe(u, o, null), M(r, a), M(r, n), i[65](n), ht(
|
|
1895
1895
|
n,
|
|
1896
1896
|
/*searchValue*/
|
|
1897
1897
|
i[1]
|
|
1898
|
-
),
|
|
1899
|
-
|
|
1898
|
+
), M(r, d), M(r, c), M(c, f), oe(h, f, null), M(c, v), g && g.m(c, null), M(r, _), m && m.m(r, null), M(r, w), j && j.m(r, null), M(t, W), ~y && ee[y].m(t, null), R = !0, p || (G = [
|
|
1899
|
+
K(
|
|
1900
1900
|
o,
|
|
1901
1901
|
"click",
|
|
1902
1902
|
/*click_handler*/
|
|
1903
|
-
i[
|
|
1903
|
+
i[64]
|
|
1904
1904
|
),
|
|
1905
|
-
|
|
1905
|
+
K(
|
|
1906
1906
|
n,
|
|
1907
1907
|
"input",
|
|
1908
1908
|
/*input_1_input_handler*/
|
|
1909
|
-
i[
|
|
1909
|
+
i[66]
|
|
1910
1910
|
),
|
|
1911
|
-
|
|
1911
|
+
K(
|
|
1912
1912
|
n,
|
|
1913
1913
|
"focus",
|
|
1914
1914
|
/*focus_handler*/
|
|
1915
|
-
i[
|
|
1915
|
+
i[67]
|
|
1916
1916
|
),
|
|
1917
|
-
|
|
1917
|
+
K(
|
|
1918
1918
|
n,
|
|
1919
1919
|
"blur",
|
|
1920
1920
|
/*blur_handler*/
|
|
1921
|
-
i[
|
|
1921
|
+
i[68]
|
|
1922
1922
|
),
|
|
1923
|
-
|
|
1923
|
+
K(
|
|
1924
1924
|
n,
|
|
1925
1925
|
"keydown",
|
|
1926
1926
|
/*handleKeyDown*/
|
|
1927
1927
|
i[22]
|
|
1928
1928
|
),
|
|
1929
|
-
|
|
1929
|
+
K(
|
|
1930
1930
|
n,
|
|
1931
1931
|
"input",
|
|
1932
1932
|
/*input_handler*/
|
|
1933
|
-
i[
|
|
1933
|
+
i[69]
|
|
1934
1934
|
),
|
|
1935
|
-
|
|
1935
|
+
K(
|
|
1936
1936
|
f,
|
|
1937
1937
|
"click",
|
|
1938
1938
|
/*click_handler_1*/
|
|
1939
|
-
i[
|
|
1939
|
+
i[70]
|
|
1940
1940
|
),
|
|
1941
|
-
|
|
1942
|
-
/*
|
|
1941
|
+
K(t, "submit", wi(
|
|
1942
|
+
/*handleSubmit*/
|
|
1943
1943
|
i[21]
|
|
1944
1944
|
))
|
|
1945
1945
|
], p = !0);
|
|
1946
1946
|
},
|
|
1947
1947
|
p(L, F) {
|
|
1948
|
-
(!
|
|
1948
|
+
(!R || F[0] & /*placeholder*/
|
|
1949
1949
|
256) && l(
|
|
1950
1950
|
n,
|
|
1951
1951
|
"placeholder",
|
|
1952
1952
|
/*placeholder*/
|
|
1953
1953
|
L[8]
|
|
1954
|
-
), (!
|
|
1954
|
+
), (!R || F[0] & /*placeholder*/
|
|
1955
1955
|
256) && l(
|
|
1956
1956
|
n,
|
|
1957
1957
|
"aria-label",
|
|
@@ -1959,11 +1959,11 @@ function dr(i) {
|
|
|
1959
1959
|
L[8]
|
|
1960
1960
|
), F[0] & /*searchValue*/
|
|
1961
1961
|
2 && n.value !== /*searchValue*/
|
|
1962
|
-
L[1] &&
|
|
1962
|
+
L[1] && ht(
|
|
1963
1963
|
n,
|
|
1964
1964
|
/*searchValue*/
|
|
1965
1965
|
L[1]
|
|
1966
|
-
), (!
|
|
1966
|
+
), (!R || F[0] & /*clearButtonTitle*/
|
|
1967
1967
|
8) && l(
|
|
1968
1968
|
f,
|
|
1969
1969
|
"title",
|
|
@@ -1971,46 +1971,46 @@ function dr(i) {
|
|
|
1971
1971
|
L[3]
|
|
1972
1972
|
), /*abortController*/
|
|
1973
1973
|
L[19] ? g ? F[0] & /*abortController*/
|
|
1974
|
-
524288 &&
|
|
1974
|
+
524288 && H(g, 1) : (g = Ct(), g.c(), H(g, 1), g.m(c, null)) : g && (Pe(), Q(g, 1, 1, () => {
|
|
1975
1975
|
g = null;
|
|
1976
|
-
}),
|
|
1977
|
-
2) &&
|
|
1976
|
+
}), Ze()), (!R || F[0] & /*searchValue*/
|
|
1977
|
+
2) && ce(
|
|
1978
1978
|
c,
|
|
1979
1979
|
"displayable",
|
|
1980
1980
|
/*searchValue*/
|
|
1981
1981
|
L[1] !== ""
|
|
1982
1982
|
), /*enableReverse*/
|
|
1983
1983
|
L[5] === !0 ? m ? (m.p(L, F), F[0] & /*enableReverse*/
|
|
1984
|
-
32 &&
|
|
1984
|
+
32 && H(m, 1)) : (m = Wt(L), m.c(), H(m, 1), m.m(r, w)) : m && (Pe(), Q(m, 1, 1, () => {
|
|
1985
1985
|
m = null;
|
|
1986
|
-
}),
|
|
1987
|
-
|
|
1988
|
-
|
|
1986
|
+
}), Ze()), j && j.p && (!R || F[2] & /*$$scope*/
|
|
1987
|
+
1) && Li(
|
|
1988
|
+
j,
|
|
1989
1989
|
k,
|
|
1990
1990
|
L,
|
|
1991
1991
|
/*$$scope*/
|
|
1992
|
-
L[
|
|
1993
|
-
|
|
1992
|
+
L[62],
|
|
1993
|
+
R ? vi(
|
|
1994
1994
|
k,
|
|
1995
1995
|
/*$$scope*/
|
|
1996
|
-
L[
|
|
1996
|
+
L[62],
|
|
1997
1997
|
F,
|
|
1998
1998
|
null
|
|
1999
|
-
) :
|
|
1999
|
+
) : _i(
|
|
2000
2000
|
/*$$scope*/
|
|
2001
|
-
L[
|
|
2001
|
+
L[62]
|
|
2002
2002
|
),
|
|
2003
2003
|
null
|
|
2004
2004
|
);
|
|
2005
|
-
let
|
|
2006
|
-
y =
|
|
2007
|
-
|
|
2008
|
-
}),
|
|
2009
|
-
4 && C !== (C =
|
|
2005
|
+
let te = y;
|
|
2006
|
+
y = B(L), y === te ? ~y && ee[y].p(L, F) : (E && (Pe(), Q(ee[te], 1, 1, () => {
|
|
2007
|
+
ee[te] = null;
|
|
2008
|
+
}), Ze()), ~y ? (E = ee[y], E ? E.p(L, F) : (E = ee[y] = X[y](L), E.c()), H(E, 1), E.m(t, null)) : E = null), (!R || F[0] & /*className*/
|
|
2009
|
+
4 && C !== (C = gt(
|
|
2010
2010
|
/*className*/
|
|
2011
2011
|
L[2]
|
|
2012
|
-
) + " svelte-
|
|
2013
|
-
22) &&
|
|
2012
|
+
) + " svelte-bz0zu3")) && l(t, "class", C), (!R || F[0] & /*className, collapsed, searchValue*/
|
|
2013
|
+
22) && ce(
|
|
2014
2014
|
t,
|
|
2015
2015
|
"can-collapse",
|
|
2016
2016
|
/*collapsed*/
|
|
@@ -2019,17 +2019,17 @@ function dr(i) {
|
|
|
2019
2019
|
);
|
|
2020
2020
|
},
|
|
2021
2021
|
i(L) {
|
|
2022
|
-
|
|
2022
|
+
R || (H(b), H(u.$$.fragment, L), H(h.$$.fragment, L), H(g), H(m), H(j, L), H(E), R = !0);
|
|
2023
2023
|
},
|
|
2024
2024
|
o(L) {
|
|
2025
|
-
Q(b), Q(u.$$.fragment, L), Q(h.$$.fragment, L), Q(g), Q(m), Q(
|
|
2025
|
+
Q(b), Q(u.$$.fragment, L), Q(h.$$.fragment, L), Q(g), Q(m), Q(j, L), Q(E), R = !1;
|
|
2026
2026
|
},
|
|
2027
2027
|
d(L) {
|
|
2028
|
-
L && (
|
|
2028
|
+
L && (O(e), O(t)), se(u), i[65](null), se(h), g && g.d(), m && m.d(), j && j.d(L), ~y && ee[y].d(), p = !1, ae(G);
|
|
2029
2029
|
}
|
|
2030
2030
|
};
|
|
2031
2031
|
}
|
|
2032
|
-
function
|
|
2032
|
+
function vr(i, e, t) {
|
|
2033
2033
|
let r, { $$slots: o = {}, $$scope: u } = e;
|
|
2034
2034
|
const a = {
|
|
2035
2035
|
continental_marine: 4,
|
|
@@ -2055,226 +2055,240 @@ function fr(i, e, t) {
|
|
|
2055
2055
|
"poi.restaurant": 18,
|
|
2056
2056
|
"poi.aerodrome": 13
|
|
2057
2057
|
};
|
|
2058
|
-
let { class: n = void 0 } = e, { apiKey: d } = e, { bbox: c = void 0 } = e, { clearButtonTitle: f = "clear" } = e, { clearOnBlur: h = !1 } = e, { collapsed: v = !1 } = e, { country: _ = void 0 } = e, { debounceSearch: w = 200 } = e, { enableReverse: W = !1 } = e, { errorMessage: y = "Something went wrong…" } = e, { filter: E = () => !0 } = e, { flyTo: C = !0 } = e, { fuzzyMatch:
|
|
2058
|
+
let { class: n = void 0 } = e, { apiKey: d } = e, { bbox: c = void 0 } = e, { clearButtonTitle: f = "clear" } = e, { clearOnBlur: h = !1 } = e, { collapsed: v = !1 } = e, { country: _ = void 0 } = e, { debounceSearch: w = 200 } = e, { enableReverse: W = !1 } = e, { errorMessage: y = "Something went wrong…" } = e, { filter: E = () => !0 } = e, { flyTo: C = !0 } = e, { fuzzyMatch: R = !0 } = e, { language: p = void 0 } = e, { limit: G = void 0 } = e, { mapController: b = void 0 } = e, { minLength: g = 2 } = e, { noResultsMessage: m = "Oops! Looks like you're trying to predict something that's not quite right. We can't seem to find what you're looking for. Maybe try double-checking your spelling or try a different search term. Keep on typing - we'll do our best to get you where you need to go!" } = e, { placeholder: k = "Search" } = e, { proximity: j = [{ type: "server-geolocation" }] } = e, { reverseActive: X = W === "always" } = e, { reverseButtonTitle: ee = "toggle reverse geocoding" } = e, { searchValue: B = "" } = e, { showFullGeometry: L = !0 } = e, { showPlaceType: F = "if-needed" } = e, { showResultsWhileTyping: te = !0 } = e, { autocompleteTimeout: _e = void 0 } = e, { selectFirst: ye = !0 } = e, { flyToSelected: Ge = !1 } = e, { markerOnSelected: De = !0 } = e, { types: me = void 0 } = e, { exhaustiveReverseGeocoding: qe = !1 } = e, { excludeTypes: Oe = !1 } = e, { zoom: we = a } = e, { maxZoom: Ue = void 0 } = e, { apiUrl: Qe = "https://api.maptiler.com/geocoding" } = e, { fetchParameters: xe = {} } = e, { iconsBaseUrl: lt = "https://cdn.maptiler.com/maptiler-geocoding-control/v2.0.0-rc.1/icons/" } = e, { adjustUrlQuery: Ke = () => {
|
|
2059
2059
|
} } = e;
|
|
2060
|
-
function
|
|
2061
|
-
|
|
2060
|
+
function jt() {
|
|
2061
|
+
ie.focus();
|
|
2062
2062
|
}
|
|
2063
|
-
function
|
|
2064
|
-
|
|
2063
|
+
function Pt() {
|
|
2064
|
+
ie.blur();
|
|
2065
2065
|
}
|
|
2066
|
-
function
|
|
2067
|
-
t(1,
|
|
2068
|
-
|
|
2066
|
+
function ut(s, U = !0, Z = !1) {
|
|
2067
|
+
t(1, B = s), U ? (t(15, D = -1), dt()) : (Xe(!Z, Z), setTimeout(() => {
|
|
2068
|
+
ie.focus(), ie.select();
|
|
2069
2069
|
}));
|
|
2070
2070
|
}
|
|
2071
|
-
function
|
|
2072
|
-
t(14,
|
|
2071
|
+
function Zt() {
|
|
2072
|
+
t(14, N = void 0), t(58, S = void 0), t(15, D = -1);
|
|
2073
|
+
}
|
|
2074
|
+
function Gt() {
|
|
2075
|
+
t(57, P = []), t(58, S = void 0);
|
|
2073
2076
|
}
|
|
2074
|
-
|
|
2075
|
-
|
|
2077
|
+
let Ee = !1, N, P, S, ct = "", ie, D = -1, re, Ie = [], ge, le, Y, Ae, Ve;
|
|
2078
|
+
const qt = /* @__PURE__ */ new Set(), ue = Ti();
|
|
2079
|
+
function Qt() {
|
|
2080
|
+
return !!Y;
|
|
2076
2081
|
}
|
|
2077
|
-
|
|
2078
|
-
const jt = /* @__PURE__ */ new Set(), le = yi();
|
|
2079
|
-
_i(() => {
|
|
2082
|
+
pi(() => {
|
|
2080
2083
|
b && (b.setEventHandler(void 0), b.indicateReverse(!1), b.setSelectedMarker(-1), b.setMarkers(void 0, void 0));
|
|
2081
2084
|
});
|
|
2082
|
-
function
|
|
2083
|
-
if (
|
|
2084
|
-
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
|
|
2085
|
+
function dt(s) {
|
|
2086
|
+
if (le && (window.clearTimeout(le), le = void 0), Y) {
|
|
2087
|
+
window.clearTimeout(Y), t(59, Y = void 0), Ne(B, { exact: !0 });
|
|
2088
|
+
return;
|
|
2089
|
+
}
|
|
2090
|
+
if (D > -1 && N)
|
|
2091
|
+
t(58, S = N[D]), t(1, B = S.place_type[0] === "reverse" ? S.place_name : S.place_name.replace(/,.*/, "")), t(18, re = void 0), t(57, P = void 0), t(15, D = -1);
|
|
2092
|
+
else if (B) {
|
|
2093
|
+
const U = s || !Je(B);
|
|
2094
|
+
Ne(B, { exact: !0 }).then(() => {
|
|
2095
|
+
t(57, P = N), t(58, S = void 0), U && xt();
|
|
2096
|
+
}).catch((Z) => t(18, re = Z));
|
|
2090
2097
|
}
|
|
2091
2098
|
}
|
|
2092
|
-
function
|
|
2099
|
+
function Je(s) {
|
|
2093
2100
|
try {
|
|
2094
|
-
return
|
|
2101
|
+
return dr(s, 6);
|
|
2095
2102
|
} catch {
|
|
2096
2103
|
return !1;
|
|
2097
2104
|
}
|
|
2098
2105
|
}
|
|
2099
|
-
async function
|
|
2100
|
-
t(18,
|
|
2101
|
-
const
|
|
2102
|
-
t(19,
|
|
2106
|
+
async function Ne(s, { byId: U = !1, exact: Z = !1, appendSpace: $ = !1 } = {}) {
|
|
2107
|
+
t(18, re = void 0), ge == null || ge.abort();
|
|
2108
|
+
const V = new AbortController();
|
|
2109
|
+
t(19, ge = V);
|
|
2103
2110
|
try {
|
|
2104
|
-
const
|
|
2105
|
-
if (p !== void 0 &&
|
|
2106
|
-
const
|
|
2107
|
-
|
|
2111
|
+
const T = Je(s), q = new URLSearchParams();
|
|
2112
|
+
if (p !== void 0 && q.set("language", Array.isArray(p) ? p.join(",") : p ?? ""), me && q.set("types", me.join(",")), Oe && q.set("excludeTypes", String(Oe)), c && q.set("bbox", c.map((Fe) => Fe.toFixed(6)).join(",")), _ && q.set("country", Array.isArray(_) ? _.join(",") : _), !U && !T) {
|
|
2113
|
+
const Fe = await er(b, j, V);
|
|
2114
|
+
Fe && q.set("proximity", Fe), (Z || !te) && q.set("autocomplete", "false"), q.set("fuzzyMatch", String(R));
|
|
2108
2115
|
}
|
|
2109
|
-
|
|
2110
|
-
const
|
|
2111
|
-
if (
|
|
2112
|
-
|
|
2116
|
+
G !== void 0 && (qe || !T || (me == null ? void 0 : me.length) === 1) && q.set("limit", String(G)), q.set("key", d), Ke(q);
|
|
2117
|
+
const Be = Qe + "/" + encodeURIComponent(T ? T.decimalLongitude + "," + T.decimalLatitude : s + ($ ? " " : "")) + ".json?" + q.toString();
|
|
2118
|
+
if (Be === ct) {
|
|
2119
|
+
U ? (t(14, N = void 0), t(58, S = Ie[0])) : t(14, N = Ie);
|
|
2113
2120
|
return;
|
|
2114
2121
|
}
|
|
2115
|
-
|
|
2116
|
-
const
|
|
2117
|
-
if (
|
|
2118
|
-
throw new Error(await
|
|
2119
|
-
const
|
|
2120
|
-
|
|
2122
|
+
ct = Be;
|
|
2123
|
+
const $e = await fetch(Be, { signal: V.signal, ...xe });
|
|
2124
|
+
if (!$e.ok)
|
|
2125
|
+
throw new Error(await $e.text());
|
|
2126
|
+
const et = await $e.json();
|
|
2127
|
+
ue("response", { url: Be, featureCollection: et }), U ? (t(14, N = void 0), t(58, S = et.features[0]), Ie = [S]) : (t(14, N = et.features.filter(E)), T && N.unshift({
|
|
2121
2128
|
type: "Feature",
|
|
2122
2129
|
properties: {},
|
|
2123
|
-
id: "reverse_" +
|
|
2124
|
-
text:
|
|
2125
|
-
place_name:
|
|
2130
|
+
id: "reverse_" + T.decimalLongitude + "_" + T.decimalLatitude,
|
|
2131
|
+
text: T.decimalLatitude + ", " + T.decimalLongitude,
|
|
2132
|
+
place_name: T.decimalLatitude + ", " + T.decimalLongitude,
|
|
2126
2133
|
place_type: ["reverse"],
|
|
2127
|
-
center: [
|
|
2134
|
+
center: [T.decimalLongitude, T.decimalLatitude],
|
|
2128
2135
|
bbox: [
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
|
|
2132
|
-
|
|
2136
|
+
T.decimalLongitude,
|
|
2137
|
+
T.decimalLatitude,
|
|
2138
|
+
T.decimalLongitude,
|
|
2139
|
+
T.decimalLatitude
|
|
2133
2140
|
],
|
|
2134
2141
|
geometry: {
|
|
2135
2142
|
type: "Point",
|
|
2136
|
-
coordinates: [
|
|
2143
|
+
coordinates: [T.decimalLongitude, T.decimalLatitude]
|
|
2137
2144
|
}
|
|
2138
|
-
}),
|
|
2139
|
-
} catch (
|
|
2140
|
-
if (
|
|
2145
|
+
}), Ie = N, T && ie.focus());
|
|
2146
|
+
} catch (T) {
|
|
2147
|
+
if (T && typeof T == "object" && "name" in T && T.name === "AbortError")
|
|
2141
2148
|
return;
|
|
2142
|
-
throw
|
|
2149
|
+
throw T;
|
|
2143
2150
|
} finally {
|
|
2144
|
-
|
|
2151
|
+
V === ge && t(19, ge = void 0);
|
|
2145
2152
|
}
|
|
2146
2153
|
}
|
|
2147
|
-
function
|
|
2148
|
-
var
|
|
2154
|
+
function xt() {
|
|
2155
|
+
var $;
|
|
2149
2156
|
if (!(P != null && P.length) || !C)
|
|
2150
2157
|
return;
|
|
2151
|
-
const s = [180, 90, -180, -90],
|
|
2152
|
-
let
|
|
2153
|
-
for (const
|
|
2154
|
-
const
|
|
2155
|
-
if (
|
|
2156
|
-
for (const
|
|
2157
|
-
s[
|
|
2158
|
+
const s = [180, 90, -180, -90], U = !P.some((V) => !V.matching_text);
|
|
2159
|
+
let Z;
|
|
2160
|
+
for (const V of P) {
|
|
2161
|
+
const T = Me(V);
|
|
2162
|
+
if (Z = Ue ?? (Z === void 0 ? T : T === void 0 ? Z : Math.max(Z, T)), U || !V.matching_text)
|
|
2163
|
+
for (const q of [0, 1, 2, 3])
|
|
2164
|
+
s[q] = Math[q < 2 ? "min" : "max"](s[q], (($ = V.bbox) == null ? void 0 : $[q]) ?? V.center[q % 2]);
|
|
2158
2165
|
}
|
|
2159
|
-
b && P.length > 0 && (S && s[0] === s[2] && s[1] === s[3] ? b.flyTo(S.center,
|
|
2166
|
+
b && P.length > 0 && (S && s[0] === s[2] && s[1] === s[3] ? b.flyTo(S.center, Me(S)) : b.fitBounds(yt(s), 50, Z));
|
|
2160
2167
|
}
|
|
2161
|
-
function
|
|
2162
|
-
var
|
|
2168
|
+
function Me(s) {
|
|
2169
|
+
var Z;
|
|
2163
2170
|
if (!s.bbox || s.bbox[0] !== s.bbox[2] && s.bbox[1] !== s.bbox[3])
|
|
2164
2171
|
return;
|
|
2165
|
-
if (typeof
|
|
2166
|
-
return s.id.startsWith("poi.") || s.id.startsWith("address.") ?
|
|
2167
|
-
const
|
|
2168
|
-
return (Array.isArray((
|
|
2169
|
-
(
|
|
2170
|
-
const
|
|
2171
|
-
return
|
|
2172
|
+
if (typeof we == "number")
|
|
2173
|
+
return s.id.startsWith("poi.") || s.id.startsWith("address.") ? Ue : we;
|
|
2174
|
+
const U = s.id.replace(/\..*/, "");
|
|
2175
|
+
return (Array.isArray((Z = s.properties) == null ? void 0 : Z.categories) ? s.properties.categories.reduce(
|
|
2176
|
+
($, V) => {
|
|
2177
|
+
const T = we[U + "." + V];
|
|
2178
|
+
return $ === void 0 ? T : T === void 0 ? $ : Math.max($, T);
|
|
2172
2179
|
},
|
|
2173
2180
|
void 0
|
|
2174
|
-
) : void 0) ??
|
|
2181
|
+
) : void 0) ?? we[U];
|
|
2175
2182
|
}
|
|
2176
|
-
function
|
|
2177
|
-
t(0, X = W === "always"), t(14,
|
|
2183
|
+
function Kt(s) {
|
|
2184
|
+
t(0, X = W === "always"), t(14, N = void 0), t(58, S = void 0), t(15, D = -1), ut(s[1].toFixed(6) + ", " + $i(s[0], [-180, 180], !0).toFixed(6), !1, !0);
|
|
2178
2185
|
}
|
|
2179
|
-
function
|
|
2180
|
-
if (!
|
|
2186
|
+
function Vt(s) {
|
|
2187
|
+
if (!N)
|
|
2181
2188
|
return;
|
|
2182
|
-
let
|
|
2183
|
-
|
|
2189
|
+
let U = s.key === "ArrowDown" ? 1 : s.key === "ArrowUp" ? -1 : 0;
|
|
2190
|
+
U && (D === (ye ? 0 : -1) && U === -1 && t(15, D = N.length), t(15, D += U), D >= N.length && t(15, D = -1), D < 0 && ye && t(15, D = 0), s.preventDefault());
|
|
2184
2191
|
}
|
|
2185
|
-
function
|
|
2186
|
-
if (t(18,
|
|
2187
|
-
|
|
2188
|
-
|
|
2189
|
-
|
|
2190
|
-
|
|
2191
|
-
|
|
2192
|
-
|
|
2193
|
-
|
|
2194
|
-
|
|
2195
|
-
|
|
2196
|
-
|
|
2197
|
-
|
|
2192
|
+
function Xe(s = !0, U = !1) {
|
|
2193
|
+
if (t(18, re = void 0), le && (window.clearTimeout(le), le = void 0), Y && (window.clearTimeout(Y), t(59, Y = void 0)), !te && !U || B.length < g) {
|
|
2194
|
+
t(14, N = void 0);
|
|
2195
|
+
return;
|
|
2196
|
+
}
|
|
2197
|
+
const Z = B;
|
|
2198
|
+
le = window.setTimeout(
|
|
2199
|
+
() => {
|
|
2200
|
+
le = void 0, Ne(Z).catch(($) => t(18, re = $));
|
|
2201
|
+
},
|
|
2202
|
+
s ? w : 0
|
|
2203
|
+
), B.endsWith(" ") || t(59, Y = window.setTimeout(
|
|
2204
|
+
() => {
|
|
2205
|
+
t(59, Y = void 0), Ne(Z, { appendSpace: !0 }).catch(($) => t(18, re = $));
|
|
2206
|
+
},
|
|
2207
|
+
_e
|
|
2208
|
+
));
|
|
2198
2209
|
}
|
|
2199
|
-
function
|
|
2200
|
-
t(
|
|
2210
|
+
function Ye(s) {
|
|
2211
|
+
t(58, S = s), t(1, B = s.place_name), t(15, D = -1);
|
|
2201
2212
|
}
|
|
2202
|
-
const
|
|
2203
|
-
function
|
|
2204
|
-
|
|
2205
|
-
|
|
2213
|
+
const Jt = () => ie.focus();
|
|
2214
|
+
function Xt(s) {
|
|
2215
|
+
nt[s ? "unshift" : "push"](() => {
|
|
2216
|
+
ie = s, t(17, ie);
|
|
2206
2217
|
});
|
|
2207
2218
|
}
|
|
2208
|
-
function
|
|
2209
|
-
|
|
2219
|
+
function Yt() {
|
|
2220
|
+
B = this.value, t(1, B), t(13, Ee), t(28, h);
|
|
2210
2221
|
}
|
|
2211
|
-
const
|
|
2212
|
-
t(1,
|
|
2213
|
-
},
|
|
2214
|
-
|
|
2215
|
-
},
|
|
2222
|
+
const $t = () => t(13, Ee = !0), ei = () => t(13, Ee = !1), ti = () => Xe(), ii = () => {
|
|
2223
|
+
t(1, B = ""), ie.focus();
|
|
2224
|
+
}, ri = () => t(0, X = !X), ni = () => t(18, re = void 0), oi = (s) => t(15, D = s), si = (s) => Ye(s), ai = () => {
|
|
2225
|
+
ye || t(15, D = -1);
|
|
2226
|
+
}, li = () => {
|
|
2216
2227
|
};
|
|
2217
2228
|
return i.$$set = (s) => {
|
|
2218
|
-
"class" in s && t(2, n = s.class), "apiKey" in s && t(26, d = s.apiKey), "bbox" in s && t(27, c = s.bbox), "clearButtonTitle" in s && t(3, f = s.clearButtonTitle), "clearOnBlur" in s && t(28, h = s.clearOnBlur), "collapsed" in s && t(4, v = s.collapsed), "country" in s && t(29, _ = s.country), "debounceSearch" in s && t(30, w = s.debounceSearch), "enableReverse" in s && t(5, W = s.enableReverse), "errorMessage" in s && t(6, y = s.errorMessage), "filter" in s && t(31, E = s.filter), "flyTo" in s && t(32, C = s.flyTo), "fuzzyMatch" in s && t(33,
|
|
2229
|
+
"class" in s && t(2, n = s.class), "apiKey" in s && t(26, d = s.apiKey), "bbox" in s && t(27, c = s.bbox), "clearButtonTitle" in s && t(3, f = s.clearButtonTitle), "clearOnBlur" in s && t(28, h = s.clearOnBlur), "collapsed" in s && t(4, v = s.collapsed), "country" in s && t(29, _ = s.country), "debounceSearch" in s && t(30, w = s.debounceSearch), "enableReverse" in s && t(5, W = s.enableReverse), "errorMessage" in s && t(6, y = s.errorMessage), "filter" in s && t(31, E = s.filter), "flyTo" in s && t(32, C = s.flyTo), "fuzzyMatch" in s && t(33, R = s.fuzzyMatch), "language" in s && t(34, p = s.language), "limit" in s && t(35, G = s.limit), "mapController" in s && t(36, b = s.mapController), "minLength" in s && t(37, g = s.minLength), "noResultsMessage" in s && t(7, m = s.noResultsMessage), "placeholder" in s && t(8, k = s.placeholder), "proximity" in s && t(38, j = s.proximity), "reverseActive" in s && t(0, X = s.reverseActive), "reverseButtonTitle" in s && t(9, ee = s.reverseButtonTitle), "searchValue" in s && t(1, B = s.searchValue), "showFullGeometry" in s && t(39, L = s.showFullGeometry), "showPlaceType" in s && t(10, F = s.showPlaceType), "showResultsWhileTyping" in s && t(40, te = s.showResultsWhileTyping), "autocompleteTimeout" in s && t(41, _e = s.autocompleteTimeout), "selectFirst" in s && t(11, ye = s.selectFirst), "flyToSelected" in s && t(42, Ge = s.flyToSelected), "markerOnSelected" in s && t(43, De = s.markerOnSelected), "types" in s && t(44, me = s.types), "exhaustiveReverseGeocoding" in s && t(45, qe = s.exhaustiveReverseGeocoding), "excludeTypes" in s && t(46, Oe = s.excludeTypes), "zoom" in s && t(47, we = s.zoom), "maxZoom" in s && t(48, Ue = s.maxZoom), "apiUrl" in s && t(49, Qe = s.apiUrl), "fetchParameters" in s && t(50, xe = s.fetchParameters), "iconsBaseUrl" in s && t(12, lt = s.iconsBaseUrl), "adjustUrlQuery" in s && t(51, Ke = s.adjustUrlQuery), "$$scope" in s && t(62, u = s.$$scope);
|
|
2219
2230
|
}, i.$$.update = () => {
|
|
2220
2231
|
if (i.$$.dirty[0] & /*enableReverse*/
|
|
2221
2232
|
32 && t(0, X = W === "always"), i.$$.dirty[0] & /*focused, clearOnBlur*/
|
|
2222
2233
|
268443648 && setTimeout(() => {
|
|
2223
|
-
t(16,
|
|
2234
|
+
t(16, Ae = Ee), h && !Ee && t(1, B = "");
|
|
2224
2235
|
}), i.$$.dirty[0] & /*searchValue, listFeatures*/
|
|
2225
2236
|
16386 | i.$$.dirty[1] & /*minLength*/
|
|
2226
|
-
64 &&
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
18432 &&
|
|
2237
|
+
64 && B.length < g && (t(58, S = void 0), t(14, N = void 0), t(18, re = void 0), t(57, P = N)), i.$$.dirty[1] & /*showFullGeometry, picked*/
|
|
2238
|
+
134217984 && L && S && !S.address && S.geometry.type === "Point" && S.place_type[0] !== "reverse" && Ne(S.id, { byId: !0 }).catch((s) => t(18, re = s)), i.$$.dirty[1] & /*mapController, picked, prevIdToFly, flyTo*/
|
|
2239
|
+
671088674 && (b && S && S.id !== Ve && C && (!S.bbox || S.bbox[0] === S.bbox[2] && S.bbox[1] === S.bbox[3] ? b.flyTo(S.center, Me(S)) : b.fitBounds(yt(S.bbox), 50, Me(S)), t(14, N = void 0), t(57, P = void 0), t(15, D = -1)), t(60, Ve = S == null ? void 0 : S.id)), i.$$.dirty[0] & /*selectFirst, listFeatures*/
|
|
2240
|
+
18432 && ye && N != null && N.length && (Qt() || t(15, D = 0)), i.$$.dirty[0] & /*searchValue*/
|
|
2230
2241
|
2 && t(15, D = -1), i.$$.dirty[0] & /*listFeatures*/
|
|
2231
2242
|
16384 | i.$$.dirty[1] & /*markedFeatures*/
|
|
2232
|
-
|
|
2243
|
+
67108864 && P !== N && t(57, P = void 0), i.$$.dirty[0] & /*reverseActive, listFeatures, focusedDelayed*/
|
|
2233
2244
|
81921 | i.$$.dirty[1] & /*mapController, markedFeatures*/
|
|
2234
|
-
|
|
2245
|
+
67108896 && b && b.setEventHandler((s) => {
|
|
2235
2246
|
switch (s.type) {
|
|
2236
2247
|
case "mapClick":
|
|
2237
|
-
X &&
|
|
2248
|
+
X && Kt(s.coordinates);
|
|
2238
2249
|
break;
|
|
2239
2250
|
case "markerClick":
|
|
2240
2251
|
{
|
|
2241
|
-
const
|
|
2242
|
-
|
|
2252
|
+
const U = N == null ? void 0 : N.find((Z) => Z.id === s.id);
|
|
2253
|
+
U && Ye(U);
|
|
2243
2254
|
}
|
|
2244
2255
|
break;
|
|
2245
2256
|
case "markerMouseEnter":
|
|
2246
|
-
P && t(15, D =
|
|
2257
|
+
P && t(15, D = Ae ? (N == null ? void 0 : N.findIndex((U) => U.id === s.id)) ?? -1 : -1);
|
|
2247
2258
|
break;
|
|
2248
2259
|
case "markerMouseLeave":
|
|
2249
2260
|
P && t(15, D = -1);
|
|
2250
2261
|
break;
|
|
2251
2262
|
}
|
|
2252
2263
|
}), i.$$.dirty[0] & /*listFeatures, selectedItemIndex*/
|
|
2253
|
-
49152 && t(
|
|
2254
|
-
|
|
2255
|
-
|
|
2256
|
-
|
|
2257
|
-
|
|
2264
|
+
49152 && t(61, r = N == null ? void 0 : N[D]), i.$$.dirty[1] & /*mapController, selected, flyTo, flyToSelected*/
|
|
2265
|
+
1073743906 && b && r && C && Ge && b.flyTo(r.center, Me(r)), i.$$.dirty[1] & /*markerOnSelected, mapController*/
|
|
2266
|
+
4128 && (De || b == null || b.setMarkers(void 0, void 0)), i.$$.dirty[1] & /*mapController, markerOnSelected, markedFeatures, selected*/
|
|
2267
|
+
1140854816 && b && De && !P && (b.setMarkers(r ? [r] : void 0, void 0), b.setSelectedMarker(r ? 0 : -1)), i.$$.dirty[1] & /*mapController, markedFeatures, picked*/
|
|
2268
|
+
201326624 && b && b.setMarkers(P, S), i.$$.dirty[0] & /*selectedItemIndex*/
|
|
2258
2269
|
32768 | i.$$.dirty[1] & /*markedFeatures, mapController*/
|
|
2259
|
-
|
|
2270
|
+
67108896 && P && b && b.setSelectedMarker(D), i.$$.dirty[1] & /*selected, autocompleteTimeoutRef*/
|
|
2271
|
+
1342177280 && r && (window.clearTimeout(Y), t(59, Y = void 0)), i.$$.dirty[0] & /*searchValue*/
|
|
2260
2272
|
2 | i.$$.dirty[1] & /*mapController*/
|
|
2261
2273
|
32 && b) {
|
|
2262
|
-
const s =
|
|
2274
|
+
const s = Je(B);
|
|
2263
2275
|
b.setReverseMarker(s ? [s.decimalLongitude, s.decimalLatitude] : void 0);
|
|
2264
2276
|
}
|
|
2265
2277
|
i.$$.dirty[1] & /*selected*/
|
|
2266
|
-
|
|
2267
|
-
|
|
2268
|
-
81920 &&
|
|
2269
|
-
|
|
2270
|
-
|
|
2271
|
-
|
|
2272
|
-
|
|
2278
|
+
1073741824 && ue("select", { feature: r }), i.$$.dirty[1] & /*picked*/
|
|
2279
|
+
134217728 && ue("pick", { feature: S }), i.$$.dirty[0] & /*focusedDelayed, listFeatures*/
|
|
2280
|
+
81920 && ue("optionsvisibilitychange", {
|
|
2281
|
+
optionsVisible: Ae && !!N
|
|
2282
|
+
}), i.$$.dirty[0] & /*listFeatures*/
|
|
2283
|
+
16384 && ue("featureslisted", { features: N }), i.$$.dirty[1] & /*markedFeatures*/
|
|
2284
|
+
67108864 && ue("featuresmarked", { features: P }), i.$$.dirty[0] & /*reverseActive*/
|
|
2285
|
+
1 && ue("reversetoggle", { reverse: X }), i.$$.dirty[0] & /*searchValue*/
|
|
2286
|
+
2 && ue("querychange", { query: B }), i.$$.dirty[0] & /*reverseActive*/
|
|
2273
2287
|
1 | i.$$.dirty[1] & /*mapController*/
|
|
2274
2288
|
32 && b && b.indicateReverse(X);
|
|
2275
2289
|
}, [
|
|
2276
2290
|
X,
|
|
2277
|
-
|
|
2291
|
+
B,
|
|
2278
2292
|
n,
|
|
2279
2293
|
f,
|
|
2280
2294
|
v,
|
|
@@ -2282,22 +2296,22 @@ function fr(i, e, t) {
|
|
|
2282
2296
|
y,
|
|
2283
2297
|
m,
|
|
2284
2298
|
k,
|
|
2285
|
-
|
|
2299
|
+
ee,
|
|
2286
2300
|
F,
|
|
2287
|
-
|
|
2288
|
-
|
|
2289
|
-
|
|
2290
|
-
|
|
2301
|
+
ye,
|
|
2302
|
+
lt,
|
|
2303
|
+
Ee,
|
|
2304
|
+
N,
|
|
2291
2305
|
D,
|
|
2292
|
-
|
|
2293
|
-
|
|
2294
|
-
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
|
|
2298
|
-
|
|
2299
|
-
|
|
2300
|
-
|
|
2306
|
+
Ae,
|
|
2307
|
+
ie,
|
|
2308
|
+
re,
|
|
2309
|
+
ge,
|
|
2310
|
+
qt,
|
|
2311
|
+
dt,
|
|
2312
|
+
Vt,
|
|
2313
|
+
Xe,
|
|
2314
|
+
Ye,
|
|
2301
2315
|
a,
|
|
2302
2316
|
d,
|
|
2303
2317
|
c,
|
|
@@ -2306,39 +2320,37 @@ function fr(i, e, t) {
|
|
|
2306
2320
|
w,
|
|
2307
2321
|
E,
|
|
2308
2322
|
C,
|
|
2309
|
-
|
|
2323
|
+
R,
|
|
2310
2324
|
p,
|
|
2311
|
-
|
|
2325
|
+
G,
|
|
2312
2326
|
b,
|
|
2313
2327
|
g,
|
|
2314
|
-
|
|
2328
|
+
j,
|
|
2315
2329
|
L,
|
|
2316
|
-
|
|
2317
|
-
|
|
2318
|
-
|
|
2319
|
-
|
|
2330
|
+
te,
|
|
2331
|
+
_e,
|
|
2332
|
+
Ge,
|
|
2333
|
+
De,
|
|
2334
|
+
me,
|
|
2335
|
+
qe,
|
|
2320
2336
|
Oe,
|
|
2321
|
-
|
|
2322
|
-
|
|
2323
|
-
|
|
2324
|
-
|
|
2325
|
-
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
|
|
2329
|
-
|
|
2330
|
-
|
|
2337
|
+
we,
|
|
2338
|
+
Ue,
|
|
2339
|
+
Qe,
|
|
2340
|
+
xe,
|
|
2341
|
+
Ke,
|
|
2342
|
+
jt,
|
|
2343
|
+
Pt,
|
|
2344
|
+
ut,
|
|
2345
|
+
Zt,
|
|
2346
|
+
Gt,
|
|
2331
2347
|
P,
|
|
2332
2348
|
S,
|
|
2333
|
-
|
|
2349
|
+
Y,
|
|
2350
|
+
Ve,
|
|
2334
2351
|
r,
|
|
2335
2352
|
u,
|
|
2336
2353
|
o,
|
|
2337
|
-
qt,
|
|
2338
|
-
Qt,
|
|
2339
|
-
Kt,
|
|
2340
|
-
Vt,
|
|
2341
|
-
xt,
|
|
2342
2354
|
Jt,
|
|
2343
2355
|
Xt,
|
|
2344
2356
|
Yt,
|
|
@@ -2346,17 +2358,22 @@ function fr(i, e, t) {
|
|
|
2346
2358
|
ei,
|
|
2347
2359
|
ti,
|
|
2348
2360
|
ii,
|
|
2349
|
-
ri
|
|
2361
|
+
ri,
|
|
2362
|
+
ni,
|
|
2363
|
+
oi,
|
|
2364
|
+
si,
|
|
2365
|
+
ai,
|
|
2366
|
+
li
|
|
2350
2367
|
];
|
|
2351
2368
|
}
|
|
2352
|
-
class
|
|
2369
|
+
class Lr extends Le {
|
|
2353
2370
|
constructor(e) {
|
|
2354
|
-
super(),
|
|
2371
|
+
super(), ve(
|
|
2355
2372
|
this,
|
|
2356
2373
|
e,
|
|
2357
|
-
|
|
2358
|
-
|
|
2359
|
-
|
|
2374
|
+
vr,
|
|
2375
|
+
br,
|
|
2376
|
+
be,
|
|
2360
2377
|
{
|
|
2361
2378
|
ZOOM_DEFAULTS: 25,
|
|
2362
2379
|
class: 2,
|
|
@@ -2385,22 +2402,24 @@ class mr extends be {
|
|
|
2385
2402
|
showFullGeometry: 39,
|
|
2386
2403
|
showPlaceType: 10,
|
|
2387
2404
|
showResultsWhileTyping: 40,
|
|
2405
|
+
autocompleteTimeout: 41,
|
|
2388
2406
|
selectFirst: 11,
|
|
2389
|
-
flyToSelected:
|
|
2390
|
-
markerOnSelected:
|
|
2391
|
-
types:
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
|
|
2407
|
+
flyToSelected: 42,
|
|
2408
|
+
markerOnSelected: 43,
|
|
2409
|
+
types: 44,
|
|
2410
|
+
exhaustiveReverseGeocoding: 45,
|
|
2411
|
+
excludeTypes: 46,
|
|
2412
|
+
zoom: 47,
|
|
2413
|
+
maxZoom: 48,
|
|
2414
|
+
apiUrl: 49,
|
|
2415
|
+
fetchParameters: 50,
|
|
2397
2416
|
iconsBaseUrl: 12,
|
|
2398
|
-
adjustUrlQuery:
|
|
2399
|
-
focus:
|
|
2400
|
-
blur:
|
|
2401
|
-
setQuery:
|
|
2402
|
-
clearList:
|
|
2403
|
-
clearMap:
|
|
2417
|
+
adjustUrlQuery: 51,
|
|
2418
|
+
focus: 52,
|
|
2419
|
+
blur: 53,
|
|
2420
|
+
setQuery: 54,
|
|
2421
|
+
clearList: 55,
|
|
2422
|
+
clearMap: 56
|
|
2404
2423
|
},
|
|
2405
2424
|
null,
|
|
2406
2425
|
[-1, -1, -1]
|
|
@@ -2410,22 +2429,22 @@ class mr extends be {
|
|
|
2410
2429
|
return this.$$.ctx[25];
|
|
2411
2430
|
}
|
|
2412
2431
|
get focus() {
|
|
2413
|
-
return this.$$.ctx[
|
|
2432
|
+
return this.$$.ctx[52];
|
|
2414
2433
|
}
|
|
2415
2434
|
get blur() {
|
|
2416
|
-
return this.$$.ctx[
|
|
2435
|
+
return this.$$.ctx[53];
|
|
2417
2436
|
}
|
|
2418
2437
|
get setQuery() {
|
|
2419
|
-
return this.$$.ctx[
|
|
2438
|
+
return this.$$.ctx[54];
|
|
2420
2439
|
}
|
|
2421
2440
|
get clearList() {
|
|
2422
|
-
return this.$$.ctx[
|
|
2441
|
+
return this.$$.ctx[55];
|
|
2423
2442
|
}
|
|
2424
2443
|
get clearMap() {
|
|
2425
|
-
return this.$$.ctx[
|
|
2444
|
+
return this.$$.ctx[56];
|
|
2426
2445
|
}
|
|
2427
2446
|
}
|
|
2428
|
-
const
|
|
2447
|
+
const zt = [
|
|
2429
2448
|
"featuresListed",
|
|
2430
2449
|
"featuresMarked",
|
|
2431
2450
|
"optionsVisibilityChange",
|
|
@@ -2434,7 +2453,7 @@ const kt = [
|
|
|
2434
2453
|
"response",
|
|
2435
2454
|
"reverseToggle",
|
|
2436
2455
|
"select"
|
|
2437
|
-
],
|
|
2456
|
+
], _r = [
|
|
2438
2457
|
"apiKey",
|
|
2439
2458
|
"bbox",
|
|
2440
2459
|
"clearButtonTitle",
|
|
@@ -2463,29 +2482,29 @@ const kt = [
|
|
|
2463
2482
|
"zoom",
|
|
2464
2483
|
"mapController"
|
|
2465
2484
|
];
|
|
2466
|
-
function
|
|
2485
|
+
function Dt(i) {
|
|
2467
2486
|
return "on" + i[0].toUpperCase() + i.slice(1);
|
|
2468
2487
|
}
|
|
2469
|
-
const
|
|
2470
|
-
const r =
|
|
2471
|
-
for (const a of
|
|
2472
|
-
delete u[
|
|
2473
|
-
|
|
2488
|
+
const Er = di(function(e, t) {
|
|
2489
|
+
const r = ft(), o = ft(), u = { ...e };
|
|
2490
|
+
for (const a of zt)
|
|
2491
|
+
delete u[Dt(a)];
|
|
2492
|
+
it(() => {
|
|
2474
2493
|
if (!r.current)
|
|
2475
2494
|
throw new Error();
|
|
2476
|
-
const a = new
|
|
2495
|
+
const a = new Lr({
|
|
2477
2496
|
target: r.current,
|
|
2478
2497
|
props: u
|
|
2479
2498
|
});
|
|
2480
2499
|
return o.current = a, () => a.$destroy();
|
|
2481
2500
|
}, []);
|
|
2482
|
-
for (const a of
|
|
2483
|
-
|
|
2501
|
+
for (const a of _r)
|
|
2502
|
+
it(() => {
|
|
2484
2503
|
o.current && e[a] !== void 0 && o.current.$set({ [a]: e[a] });
|
|
2485
2504
|
}, [e[a]]);
|
|
2486
|
-
for (const a of
|
|
2487
|
-
const n = e[
|
|
2488
|
-
|
|
2505
|
+
for (const a of zt) {
|
|
2506
|
+
const n = e[Dt(a)];
|
|
2507
|
+
it(
|
|
2489
2508
|
() => {
|
|
2490
2509
|
var d;
|
|
2491
2510
|
return n && ((d = o.current) == null ? void 0 : d.$on(a, (c) => {
|
|
@@ -2495,7 +2514,7 @@ const vr = si(function(e, t) {
|
|
|
2495
2514
|
[n]
|
|
2496
2515
|
);
|
|
2497
2516
|
}
|
|
2498
|
-
return
|
|
2517
|
+
return fi(t, () => ({
|
|
2499
2518
|
setQuery: (a, n = !0) => {
|
|
2500
2519
|
var d;
|
|
2501
2520
|
return (d = o.current) == null ? void 0 : d.setQuery(a, n);
|
|
@@ -2516,9 +2535,9 @@ const vr = si(function(e, t) {
|
|
|
2516
2535
|
var a;
|
|
2517
2536
|
return (a = o.current) == null ? void 0 : a.blur();
|
|
2518
2537
|
}
|
|
2519
|
-
})),
|
|
2538
|
+
})), mi("div", { ref: r });
|
|
2520
2539
|
});
|
|
2521
2540
|
export {
|
|
2522
|
-
|
|
2541
|
+
Er as GeocodingControl
|
|
2523
2542
|
};
|
|
2524
2543
|
//# sourceMappingURL=react.js.map
|