vue-geojson-view-ts 1.3.11 → 1.3.12

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.
@@ -64,8 +64,8 @@ function Vu() {
64
64
  function w() {
65
65
  }
66
66
  return function(b) {
67
- var S;
68
- return w.prototype = b, S = new w(), w.prototype = null, S;
67
+ var T;
68
+ return w.prototype = b, T = new w(), w.prototype = null, T;
69
69
  };
70
70
  }(), c = {}, d = c.lib = {}, f = d.Base = function() {
71
71
  return {
@@ -196,15 +196,15 @@ function Vu() {
196
196
  * wordArray1.concat(wordArray2);
197
197
  */
198
198
  concat: function(w) {
199
- var b = this.words, S = w.words, M = this.sigBytes, A = w.sigBytes;
199
+ var b = this.words, T = w.words, M = this.sigBytes, A = w.sigBytes;
200
200
  if (this.clamp(), M % 4)
201
201
  for (var I = 0; I < A; I++) {
202
- var z = S[I >>> 2] >>> 24 - I % 4 * 8 & 255;
202
+ var z = T[I >>> 2] >>> 24 - I % 4 * 8 & 255;
203
203
  b[M + I >>> 2] |= z << 24 - (M + I) % 4 * 8;
204
204
  }
205
205
  else
206
206
  for (var Z = 0; Z < A; Z += 4)
207
- b[M + Z >>> 2] = S[Z >>> 2];
207
+ b[M + Z >>> 2] = T[Z >>> 2];
208
208
  return this.sigBytes += A, this;
209
209
  },
210
210
  /**
@@ -245,7 +245,7 @@ function Vu() {
245
245
  * var wordArray = CryptoJS.lib.WordArray.random(16);
246
246
  */
247
247
  random: function(w) {
248
- for (var b = [], S = 0; S < w; S += 4)
248
+ for (var b = [], T = 0; T < w; T += 4)
249
249
  b.push(a());
250
250
  return new _.init(b, w);
251
251
  }
@@ -264,7 +264,7 @@ function Vu() {
264
264
  * var hexString = CryptoJS.enc.Hex.stringify(wordArray);
265
265
  */
266
266
  stringify: function(w) {
267
- for (var b = w.words, S = w.sigBytes, M = [], A = 0; A < S; A++) {
267
+ for (var b = w.words, T = w.sigBytes, M = [], A = 0; A < T; A++) {
268
268
  var I = b[A >>> 2] >>> 24 - A % 4 * 8 & 255;
269
269
  M.push((I >>> 4).toString(16)), M.push((I & 15).toString(16));
270
270
  }
@@ -284,9 +284,9 @@ function Vu() {
284
284
  * var wordArray = CryptoJS.enc.Hex.parse(hexString);
285
285
  */
286
286
  parse: function(w) {
287
- for (var b = w.length, S = [], M = 0; M < b; M += 2)
288
- S[M >>> 3] |= parseInt(w.substr(M, 2), 16) << 24 - M % 8 * 4;
289
- return new _.init(S, b / 2);
287
+ for (var b = w.length, T = [], M = 0; M < b; M += 2)
288
+ T[M >>> 3] |= parseInt(w.substr(M, 2), 16) << 24 - M % 8 * 4;
289
+ return new _.init(T, b / 2);
290
290
  }
291
291
  }, y = m.Latin1 = {
292
292
  /**
@@ -303,7 +303,7 @@ function Vu() {
303
303
  * var latin1String = CryptoJS.enc.Latin1.stringify(wordArray);
304
304
  */
305
305
  stringify: function(w) {
306
- for (var b = w.words, S = w.sigBytes, M = [], A = 0; A < S; A++) {
306
+ for (var b = w.words, T = w.sigBytes, M = [], A = 0; A < T; A++) {
307
307
  var I = b[A >>> 2] >>> 24 - A % 4 * 8 & 255;
308
308
  M.push(String.fromCharCode(I));
309
309
  }
@@ -323,9 +323,9 @@ function Vu() {
323
323
  * var wordArray = CryptoJS.enc.Latin1.parse(latin1String);
324
324
  */
325
325
  parse: function(w) {
326
- for (var b = w.length, S = [], M = 0; M < b; M++)
327
- S[M >>> 2] |= (w.charCodeAt(M) & 255) << 24 - M % 4 * 8;
328
- return new _.init(S, b);
326
+ for (var b = w.length, T = [], M = 0; M < b; M++)
327
+ T[M >>> 2] |= (w.charCodeAt(M) & 255) << 24 - M % 4 * 8;
328
+ return new _.init(T, b);
329
329
  }
330
330
  }, E = m.Utf8 = {
331
331
  /**
@@ -403,13 +403,13 @@ function Vu() {
403
403
  * var processedData = bufferedBlockAlgorithm._process(!!'flush');
404
404
  */
405
405
  _process: function(w) {
406
- var b, S = this._data, M = S.words, A = S.sigBytes, I = this.blockSize, z = I * 4, Z = A / z;
406
+ var b, T = this._data, M = T.words, A = T.sigBytes, I = this.blockSize, z = I * 4, Z = A / z;
407
407
  w ? Z = i.ceil(Z) : Z = i.max((Z | 0) - this._minBufferSize, 0);
408
408
  var X = Z * I, V = i.min(X * 4, A);
409
409
  if (X) {
410
410
  for (var K = 0; K < X; K += I)
411
411
  this._doProcessBlock(M, K);
412
- b = M.splice(0, X), S.sigBytes -= V;
412
+ b = M.splice(0, X), T.sigBytes -= V;
413
413
  }
414
414
  return new _.init(b, V);
415
415
  },
@@ -504,8 +504,8 @@ function Vu() {
504
504
  * var SHA256 = CryptoJS.lib.Hasher._createHelper(CryptoJS.algo.SHA256);
505
505
  */
506
506
  _createHelper: function(w) {
507
- return function(b, S) {
508
- return new w.init(S).finalize(b);
507
+ return function(b, T) {
508
+ return new w.init(T).finalize(b);
509
509
  };
510
510
  },
511
511
  /**
@@ -522,8 +522,8 @@ function Vu() {
522
522
  * var HmacSHA256 = CryptoJS.lib.Hasher._createHmacHelper(CryptoJS.algo.SHA256);
523
523
  */
524
524
  _createHmacHelper: function(w) {
525
- return function(b, S) {
526
- return new P.HMAC.init(w, S).finalize(b);
525
+ return function(b, T) {
526
+ return new P.HMAC.init(w, T).finalize(b);
527
527
  };
528
528
  }
529
529
  });
@@ -622,7 +622,7 @@ const Ju = /* @__PURE__ */ Xu(x_), E_ = (r, t) => {
622
622
  }, qs = (r) => {
623
623
  const t = localStorage.getItem(r);
624
624
  return t ? Tl.parse(t).toString(Ju) : null;
625
- }, Qu = (r) => {
625
+ }, $u = (r) => {
626
626
  const t = localStorage.getItem(r);
627
627
  return t ? Tl.parse(t) : null;
628
628
  }, Js = (r) => {
@@ -649,7 +649,7 @@ const YL = () => {
649
649
  window.open("https://www.google.com/maps/?hl=es", "Iniciar Sesion Ciudadania Digital", "width=700,height=700,resizable=no"), Js("coordinates"), Js("closePopup");
650
650
  var r = !1;
651
651
  const t = setInterval(function() {
652
- let n = qs("coordinates"), o = Qu("closePopup");
652
+ let n = qs("coordinates"), o = $u("closePopup");
653
653
  (n || o) && (clearInterval(t), r = !0);
654
654
  }, 1e3);
655
655
  await (async () => {
@@ -666,7 +666,7 @@ const YL = () => {
666
666
  window.open(`http://maps.google.com/?q=${r}`, "Iniciar Sesion Ciudadania Digital", "width=700,height=700,resizable=no"), Js("coordinates"), Js("closePopup");
667
667
  var t = !1;
668
668
  const e = setInterval(function() {
669
- let o = qs("coordinates"), a = Qu("closePopup");
669
+ let o = qs("coordinates"), a = $u("closePopup");
670
670
  (o || a) && (clearInterval(e), t = !0);
671
671
  }, 1e3);
672
672
  await (async () => {
@@ -686,7 +686,7 @@ var Ps = { exports: {} };
686
686
  * (c) 2010-2023 Vladimir Agafonkin, (c) 2010-2011 CloudMade
687
687
  */
688
688
  var xc;
689
- function $u() {
689
+ function Qu() {
690
690
  return xc || (xc = 1, function(r, t) {
691
691
  (function(e, i) {
692
692
  i(t);
@@ -722,11 +722,11 @@ function $u() {
722
722
  return "_leaflet_id" in s || (s._leaflet_id = ++h), s._leaflet_id;
723
723
  }
724
724
  function d(s, l, u) {
725
- var g, p, x, T;
726
- return T = function() {
725
+ var g, p, x, S;
726
+ return S = function() {
727
727
  g = !1, p && (x.apply(u, p), p = !1);
728
728
  }, x = function() {
729
- g ? p = arguments : (s.apply(u, arguments), setTimeout(T, l), g = !0);
729
+ g ? p = arguments : (s.apply(u, arguments), setTimeout(S, l), g = !0);
730
730
  }, x;
731
731
  }
732
732
  function f(s, l, u) {
@@ -772,7 +772,7 @@ function $u() {
772
772
  var b = Array.isArray || function(s) {
773
773
  return Object.prototype.toString.call(s) === "[object Array]";
774
774
  };
775
- function S(s, l) {
775
+ function T(s, l) {
776
776
  for (var u = 0; u < s.length; u++)
777
777
  if (s[u] === l)
778
778
  return u;
@@ -818,7 +818,7 @@ function $u() {
818
818
  getParamString: C,
819
819
  template: w,
820
820
  isArray: b,
821
- indexOf: S,
821
+ indexOf: T,
822
822
  emptyImageUrl: M,
823
823
  requestFn: Z,
824
824
  cancelFn: X,
@@ -837,7 +837,7 @@ function $u() {
837
837
  return s.statics && n(l, s.statics), s.includes && (H(s.includes), n.apply(null, [g].concat(s.includes))), n(g, s), delete g.statics, delete g.includes, g.options && (g.options = u.options ? o(u.options) : {}, n(g.options, s.options)), g._initHooks = [], g.callInitHooks = function() {
838
838
  if (!this._initHooksCalled) {
839
839
  u.callInitHooks && u.callInitHooks.call(this), this._initHooksCalled = !0;
840
- for (var x = 0, T = g._initHooks.length; x < T; x++)
840
+ for (var x = 0, S = g._initHooks.length; x < S; x++)
841
841
  g._initHooks[x].call(this);
842
842
  }
843
843
  }, l;
@@ -897,7 +897,7 @@ function $u() {
897
897
  this._off(g, s[g], l);
898
898
  else {
899
899
  s = y(s);
900
- for (var p = arguments.length === 1, x = 0, T = s.length; x < T; x++)
900
+ for (var p = arguments.length === 1, x = 0, S = s.length; x < S; x++)
901
901
  p ? this._off(s[x]) : this._off(s[x], l, u);
902
902
  }
903
903
  return this;
@@ -928,10 +928,10 @@ function $u() {
928
928
  console.warn("wrong listener type: " + typeof l);
929
929
  return;
930
930
  }
931
- var T = this._listens(s, l, u);
932
- if (T !== !1) {
933
- var k = g[T];
934
- this._firingCount && (k.fn = _, this._events[s] = g = g.slice()), g.splice(T, 1);
931
+ var S = this._listens(s, l, u);
932
+ if (S !== !1) {
933
+ var k = g[S];
934
+ this._firingCount && (k.fn = _, this._events[s] = g = g.slice()), g.splice(S, 1);
935
935
  }
936
936
  }
937
937
  },
@@ -951,7 +951,7 @@ function $u() {
951
951
  var p = this._events[s];
952
952
  if (p) {
953
953
  this._firingCount = this._firingCount + 1 || 1;
954
- for (var x = 0, T = p.length; x < T; x++) {
954
+ for (var x = 0, S = p.length; x < S; x++) {
955
955
  var k = p[x], R = k.fn;
956
956
  k.once && this.off(s, R, k.ctx), R.call(k.ctx || this, g);
957
957
  }
@@ -972,8 +972,8 @@ function $u() {
972
972
  if (x && x.length && this._listens(s, p, u) !== !1)
973
973
  return !0;
974
974
  if (g) {
975
- for (var T in this._eventParents)
976
- if (this._eventParents[T].listens(s, l, u, g))
975
+ for (var S in this._eventParents)
976
+ if (this._eventParents[S].listens(s, l, u, g))
977
977
  return !0;
978
978
  }
979
979
  return !1;
@@ -1209,16 +1209,16 @@ function $u() {
1209
1209
  // intersect if they have at least one point in common.
1210
1210
  intersects: function(s) {
1211
1211
  s = F(s);
1212
- var l = this.min, u = this.max, g = s.min, p = s.max, x = p.x >= l.x && g.x <= u.x, T = p.y >= l.y && g.y <= u.y;
1213
- return x && T;
1212
+ var l = this.min, u = this.max, g = s.min, p = s.max, x = p.x >= l.x && g.x <= u.x, S = p.y >= l.y && g.y <= u.y;
1213
+ return x && S;
1214
1214
  },
1215
1215
  // @method overlaps(otherBounds: Bounds): Boolean
1216
1216
  // Returns `true` if the rectangle overlaps the given bounds. Two bounds
1217
1217
  // overlap if their intersection is an area.
1218
1218
  overlaps: function(s) {
1219
1219
  s = F(s);
1220
- var l = this.min, u = this.max, g = s.min, p = s.max, x = p.x > l.x && g.x < u.x, T = p.y > l.y && g.y < u.y;
1221
- return x && T;
1220
+ var l = this.min, u = this.max, g = s.min, p = s.max, x = p.x > l.x && g.x < u.x, S = p.y > l.y && g.y < u.y;
1221
+ return x && S;
1222
1222
  },
1223
1223
  // @method isValid(): Boolean
1224
1224
  // Returns `true` if the bounds are properly initialized.
@@ -1264,7 +1264,7 @@ function $u() {
1264
1264
  if (g = s._southWest, p = s._northEast, !g || !p)
1265
1265
  return this;
1266
1266
  } else
1267
- return s ? this.extend(nt(s) || Q(s)) : this;
1267
+ return s ? this.extend(nt(s) || $(s)) : this;
1268
1268
  return !l && !u ? (this._southWest = new q(g.lat, g.lng), this._northEast = new q(p.lat, p.lng)) : (l.lat = Math.min(g.lat, l.lat), l.lng = Math.min(g.lng, l.lng), u.lat = Math.max(p.lat, u.lat), u.lng = Math.max(p.lng, u.lng)), this;
1269
1269
  },
1270
1270
  // @method pad(bufferRatio: Number): LatLngBounds
@@ -1332,23 +1332,23 @@ function $u() {
1332
1332
  // @method contains (latlng: LatLng): Boolean
1333
1333
  // Returns `true` if the rectangle contains the given point.
1334
1334
  contains: function(s) {
1335
- typeof s[0] == "number" || s instanceof q || "lat" in s ? s = nt(s) : s = Q(s);
1335
+ typeof s[0] == "number" || s instanceof q || "lat" in s ? s = nt(s) : s = $(s);
1336
1336
  var l = this._southWest, u = this._northEast, g, p;
1337
1337
  return s instanceof wt ? (g = s.getSouthWest(), p = s.getNorthEast()) : g = p = s, g.lat >= l.lat && p.lat <= u.lat && g.lng >= l.lng && p.lng <= u.lng;
1338
1338
  },
1339
1339
  // @method intersects(otherBounds: LatLngBounds): Boolean
1340
1340
  // Returns `true` if the rectangle intersects the given bounds. Two bounds intersect if they have at least one point in common.
1341
1341
  intersects: function(s) {
1342
- s = Q(s);
1343
- var l = this._southWest, u = this._northEast, g = s.getSouthWest(), p = s.getNorthEast(), x = p.lat >= l.lat && g.lat <= u.lat, T = p.lng >= l.lng && g.lng <= u.lng;
1344
- return x && T;
1342
+ s = $(s);
1343
+ var l = this._southWest, u = this._northEast, g = s.getSouthWest(), p = s.getNorthEast(), x = p.lat >= l.lat && g.lat <= u.lat, S = p.lng >= l.lng && g.lng <= u.lng;
1344
+ return x && S;
1345
1345
  },
1346
1346
  // @method overlaps(otherBounds: LatLngBounds): Boolean
1347
1347
  // Returns `true` if the rectangle overlaps the given bounds. Two bounds overlap if their intersection is an area.
1348
1348
  overlaps: function(s) {
1349
- s = Q(s);
1350
- var l = this._southWest, u = this._northEast, g = s.getSouthWest(), p = s.getNorthEast(), x = p.lat > l.lat && g.lat < u.lat, T = p.lng > l.lng && g.lng < u.lng;
1351
- return x && T;
1349
+ s = $(s);
1350
+ var l = this._southWest, u = this._northEast, g = s.getSouthWest(), p = s.getNorthEast(), x = p.lat > l.lat && g.lat < u.lat, S = p.lng > l.lng && g.lng < u.lng;
1351
+ return x && S;
1352
1352
  },
1353
1353
  // @method toBBoxString(): String
1354
1354
  // Returns a string with bounding box coordinates in a 'southwest_lng,southwest_lat,northeast_lng,northeast_lat' format. Useful for sending requests to web services that return geo data.
@@ -1358,7 +1358,7 @@ function $u() {
1358
1358
  // @method equals(otherBounds: LatLngBounds, maxMargin?: Number): Boolean
1359
1359
  // Returns `true` if the rectangle is equivalent (within a small margin of error) to the given bounds. The margin of error can be overridden by setting `maxMargin` to a small number.
1360
1360
  equals: function(s, l) {
1361
- return s ? (s = Q(s), this._southWest.equals(s.getSouthWest(), l) && this._northEast.equals(s.getNorthEast(), l)) : !1;
1361
+ return s ? (s = $(s), this._southWest.equals(s.getSouthWest(), l) && this._northEast.equals(s.getNorthEast(), l)) : !1;
1362
1362
  },
1363
1363
  // @method isValid(): Boolean
1364
1364
  // Returns `true` if the bounds are properly initialized.
@@ -1366,7 +1366,7 @@ function $u() {
1366
1366
  return !!(this._southWest && this._northEast);
1367
1367
  }
1368
1368
  };
1369
- function Q(s, l) {
1369
+ function $(s, l) {
1370
1370
  return s instanceof wt ? s : new wt(s, l);
1371
1371
  }
1372
1372
  function q(s, l, u) {
@@ -1406,7 +1406,7 @@ function $u() {
1406
1406
  // Returns a new `LatLngBounds` object in which each boundary is `sizeInMeters/2` meters apart from the `LatLng`.
1407
1407
  toBounds: function(s) {
1408
1408
  var l = 180 * s / 40075017, u = l / Math.cos(Math.PI / 180 * this.lat);
1409
- return Q(
1409
+ return $(
1410
1410
  [this.lat - l, this.lng - u],
1411
1411
  [this.lat + l, this.lng + u]
1412
1412
  );
@@ -1497,7 +1497,7 @@ function $u() {
1497
1497
  var l = s.getCenter(), u = this.wrapLatLng(l), g = l.lat - u.lat, p = l.lng - u.lng;
1498
1498
  if (g === 0 && p === 0)
1499
1499
  return s;
1500
- var x = s.getSouthWest(), T = s.getNorthEast(), k = new q(x.lat - g, x.lng - p), R = new q(T.lat - g, T.lng - p);
1500
+ var x = s.getSouthWest(), S = s.getNorthEast(), k = new q(x.lat - g, x.lng - p), R = new q(S.lat - g, S.lng - p);
1501
1501
  return new wt(k, R);
1502
1502
  }
1503
1503
  }, Ct = n({}, Dt, {
@@ -1508,7 +1508,7 @@ function $u() {
1508
1508
  R: 6371e3,
1509
1509
  // distance between two geographical points using spherical law of cosines approximation
1510
1510
  distance: function(s, l) {
1511
- var u = Math.PI / 180, g = s.lat * u, p = l.lat * u, x = Math.sin((l.lat - s.lat) * u / 2), T = Math.sin((l.lng - s.lng) * u / 2), k = x * x + Math.cos(g) * Math.cos(p) * T * T, R = 2 * Math.atan2(Math.sqrt(k), Math.sqrt(1 - k));
1511
+ var u = Math.PI / 180, g = s.lat * u, p = l.lat * u, x = Math.sin((l.lat - s.lat) * u / 2), S = Math.sin((l.lng - s.lng) * u / 2), k = x * x + Math.cos(g) * Math.cos(p) * S * S, R = 2 * Math.atan2(Math.sqrt(k), Math.sqrt(1 - k));
1512
1512
  return this.R * R;
1513
1513
  }
1514
1514
  }), me = 6378137, Ie = {
@@ -1578,9 +1578,9 @@ function $u() {
1578
1578
  return document.createElementNS("http://www.w3.org/2000/svg", s);
1579
1579
  }
1580
1580
  function Le(s, l) {
1581
- var u = "", g, p, x, T, k, R;
1581
+ var u = "", g, p, x, S, k, R;
1582
1582
  for (g = 0, x = s.length; g < x; g++) {
1583
- for (k = s[g], p = 0, T = k.length; p < T; p++)
1583
+ for (k = s[g], p = 0, S = k.length; p < S; p++)
1584
1584
  R = k[p], u += (p ? "L" : "M") + R.x + " " + R.y;
1585
1585
  u += l ? Y.svg ? "z" : "x" : "";
1586
1586
  }
@@ -1712,10 +1712,10 @@ function $u() {
1712
1712
  return;
1713
1713
  }
1714
1714
  if (!(x.pointerType === "mouse" || x.sourceCapabilities && !x.sourceCapabilities.firesTouchEvents)) {
1715
- var T = Ih(x);
1716
- if (!(T.some(function(R) {
1715
+ var S = Ih(x);
1716
+ if (!(S.some(function(R) {
1717
1717
  return R instanceof HTMLLabelElement && R.attributes.for;
1718
- }) && !T.some(function(R) {
1718
+ }) && !S.some(function(R) {
1719
1719
  return R instanceof HTMLInputElement || R instanceof HTMLSelectElement;
1720
1720
  }))) {
1721
1721
  var k = Date.now();
@@ -1910,7 +1910,7 @@ function $u() {
1910
1910
  fa(s, p, l[p], u);
1911
1911
  else {
1912
1912
  l = y(l);
1913
- for (var x = 0, T = l.length; x < T; x++)
1913
+ for (var x = 0, S = l.length; x < S; x++)
1914
1914
  fa(s, l[x], u, g);
1915
1915
  }
1916
1916
  return this;
@@ -1924,10 +1924,10 @@ function $u() {
1924
1924
  ga(s, p, l[p], u);
1925
1925
  else if (l = y(l), arguments.length === 2)
1926
1926
  Ah(s, function(k) {
1927
- return S(l, k) !== -1;
1927
+ return T(l, k) !== -1;
1928
1928
  });
1929
1929
  else
1930
- for (var x = 0, T = l.length; x < T; x++)
1930
+ for (var x = 0, S = l.length; x < S; x++)
1931
1931
  ga(s, l[x], u, g);
1932
1932
  return this;
1933
1933
  }
@@ -1948,10 +1948,10 @@ function $u() {
1948
1948
  return this;
1949
1949
  var x = function(k) {
1950
1950
  return u.call(g || s, k || window.event);
1951
- }, T = x;
1951
+ }, S = x;
1952
1952
  !Y.touchNative && Y.pointer && l.indexOf("touch") === 0 ? x = sg(s, l, x) : Y.touch && l === "dblclick" ? x = fg(s, x) : "addEventListener" in s ? l === "touchstart" || l === "touchmove" || l === "wheel" || l === "mousewheel" ? s.addEventListener(da[l] || l, x, Y.passiveEvents ? { passive: !1 } : !1) : l === "mouseenter" || l === "mouseleave" ? (x = function(k) {
1953
- k = k || window.event, pa(s, k) && T(k);
1954
- }, s.addEventListener(da[l], x, !1)) : s.addEventListener(l, T, !1) : s.attachEvent("on" + l, x), s[ze] = s[ze] || {}, s[ze][p] = x;
1953
+ k = k || window.event, pa(s, k) && S(k);
1954
+ }, s.addEventListener(da[l], x, !1)) : s.addEventListener(l, S, !1) : s.attachEvent("on" + l, x), s[ze] = s[ze] || {}, s[ze][p] = x;
1955
1955
  }
1956
1956
  function ga(s, l, u, g, p) {
1957
1957
  p = p || l + c(u) + (g ? "_" + c(g) : "");
@@ -2194,18 +2194,18 @@ function $u() {
2194
2194
  // @method setZoomAround(offset: Point, zoom: Number, options: Zoom options): this
2195
2195
  // Zooms the map while keeping a specified pixel on the map (relative to the top-left corner) stationary.
2196
2196
  setZoomAround: function(s, l, u) {
2197
- var g = this.getZoomScale(l), p = this.getSize().divideBy(2), x = s instanceof N ? s : this.latLngToContainerPoint(s), T = x.subtract(p).multiplyBy(1 - 1 / g), k = this.containerPointToLatLng(p.add(T));
2197
+ var g = this.getZoomScale(l), p = this.getSize().divideBy(2), x = s instanceof N ? s : this.latLngToContainerPoint(s), S = x.subtract(p).multiplyBy(1 - 1 / g), k = this.containerPointToLatLng(p.add(S));
2198
2198
  return this.setView(k, l, { zoom: u });
2199
2199
  },
2200
2200
  _getBoundsCenterZoom: function(s, l) {
2201
- l = l || {}, s = s.getBounds ? s.getBounds() : Q(s);
2201
+ l = l || {}, s = s.getBounds ? s.getBounds() : $(s);
2202
2202
  var u = U(l.paddingTopLeft || l.padding || [0, 0]), g = U(l.paddingBottomRight || l.padding || [0, 0]), p = this.getBoundsZoom(s, !1, u.add(g));
2203
2203
  if (p = typeof l.maxZoom == "number" ? Math.min(l.maxZoom, p) : p, p === 1 / 0)
2204
2204
  return {
2205
2205
  center: s.getCenter(),
2206
2206
  zoom: p
2207
2207
  };
2208
- var x = g.subtract(u).divideBy(2), T = this.project(s.getSouthWest(), p), k = this.project(s.getNorthEast(), p), R = this.unproject(T.add(k).divideBy(2).add(x), p);
2208
+ var x = g.subtract(u).divideBy(2), S = this.project(s.getSouthWest(), p), k = this.project(s.getNorthEast(), p), R = this.unproject(S.add(k).divideBy(2).add(x), p);
2209
2209
  return {
2210
2210
  center: R,
2211
2211
  zoom: p
@@ -2215,7 +2215,7 @@ function $u() {
2215
2215
  // Sets a map view that contains the given geographical bounds with the
2216
2216
  // maximum zoom level possible.
2217
2217
  fitBounds: function(s, l) {
2218
- if (s = Q(s), !s.isValid())
2218
+ if (s = $(s), !s.isValid())
2219
2219
  throw new Error("Bounds are not valid.");
2220
2220
  var u = this._getBoundsCenterZoom(s, l);
2221
2221
  return this.setView(u.center, u.zoom, l);
@@ -2256,11 +2256,11 @@ function $u() {
2256
2256
  if (u = u || {}, u.animate === !1 || !Y.any3d)
2257
2257
  return this.setView(s, l, u);
2258
2258
  this._stop();
2259
- var g = this.project(this.getCenter()), p = this.project(s), x = this.getSize(), T = this._zoom;
2260
- s = nt(s), l = l === void 0 ? T : l;
2261
- var k = Math.max(x.x, x.y), R = k * this.getZoomScale(T, l), O = p.distanceTo(g) || 1, j = 1.42, $ = j * j;
2259
+ var g = this.project(this.getCenter()), p = this.project(s), x = this.getSize(), S = this._zoom;
2260
+ s = nt(s), l = l === void 0 ? S : l;
2261
+ var k = Math.max(x.x, x.y), R = k * this.getZoomScale(S, l), O = p.distanceTo(g) || 1, j = 1.42, Q = j * j;
2262
2262
  function ct(zt) {
2263
- var Cs = zt ? -1 : 1, o_ = zt ? R : k, a_ = R * R - k * k + Cs * $ * $ * O * O, l_ = 2 * o_ * $ * O, Sa = a_ / l_, pc = Math.sqrt(Sa * Sa + 1) - Sa, h_ = pc < 1e-9 ? -18 : Math.log(pc);
2263
+ var Cs = zt ? -1 : 1, o_ = zt ? R : k, a_ = R * R - k * k + Cs * Q * Q * O * O, l_ = 2 * o_ * Q * O, Sa = a_ / l_, pc = Math.sqrt(Sa * Sa + 1) - Sa, h_ = pc < 1e-9 ? -18 : Math.log(pc);
2264
2264
  return h_;
2265
2265
  }
2266
2266
  function ne(zt) {
@@ -2277,7 +2277,7 @@ function $u() {
2277
2277
  return k * (Zt(ae) / Zt(ae + j * zt));
2278
2278
  }
2279
2279
  function i_(zt) {
2280
- return k * (Zt(ae) * Ee(ae + j * zt) - ne(ae)) / $;
2280
+ return k * (Zt(ae) * Ee(ae + j * zt) - ne(ae)) / Q;
2281
2281
  }
2282
2282
  function n_(zt) {
2283
2283
  return 1 - Math.pow(1 - zt, 1.5);
@@ -2286,8 +2286,8 @@ function $u() {
2286
2286
  function _c() {
2287
2287
  var zt = (Date.now() - r_) / s_, Cs = n_(zt) * gc;
2288
2288
  zt <= 1 ? (this._flyToFrame = V(_c, this), this._move(
2289
- this.unproject(g.add(p.subtract(g).multiplyBy(i_(Cs) / O)), T),
2290
- this.getScaleZoom(k / Tn(Cs), T),
2289
+ this.unproject(g.add(p.subtract(g).multiplyBy(i_(Cs) / O)), S),
2290
+ this.getScaleZoom(k / Tn(Cs), S),
2291
2291
  { flyTo: !0 }
2292
2292
  )) : this._move(s, l)._moveEnd(!0);
2293
2293
  }
@@ -2303,7 +2303,7 @@ function $u() {
2303
2303
  // @method setMaxBounds(bounds: LatLngBounds): this
2304
2304
  // Restricts the map view to the given bounds (see the [maxBounds](#map-maxbounds) option).
2305
2305
  setMaxBounds: function(s) {
2306
- return s = Q(s), this.listens("moveend", this._panInsideMaxBounds) && this.off("moveend", this._panInsideMaxBounds), s.isValid() ? (this.options.maxBounds = s, this._loaded && this._panInsideMaxBounds(), this.on("moveend", this._panInsideMaxBounds)) : (this.options.maxBounds = null, this);
2306
+ return s = $(s), this.listens("moveend", this._panInsideMaxBounds) && this.off("moveend", this._panInsideMaxBounds), s.isValid() ? (this.options.maxBounds = s, this._loaded && this._panInsideMaxBounds(), this.on("moveend", this._panInsideMaxBounds)) : (this.options.maxBounds = null, this);
2307
2307
  },
2308
2308
  // @method setMinZoom(zoom: Number): this
2309
2309
  // Sets the lower limit for the available zoom levels (see the [minZoom](#map-minzoom) option).
@@ -2321,7 +2321,7 @@ function $u() {
2321
2321
  // Pans the map to the closest view that would lie inside the given bounds (if it's not already), controlling the animation using the options specific, if any.
2322
2322
  panInsideBounds: function(s, l) {
2323
2323
  this._enforcingBounds = !0;
2324
- var u = this.getCenter(), g = this._limitCenter(u, this._zoom, Q(s));
2324
+ var u = this.getCenter(), g = this._limitCenter(u, this._zoom, $(s));
2325
2325
  return u.equals(g) || this.panTo(g, l), this._enforcingBounds = !1, this;
2326
2326
  },
2327
2327
  // @method panInside(latlng: LatLng, options?: padding options): this
@@ -2331,7 +2331,7 @@ function $u() {
2331
2331
  // the map will not be panned.
2332
2332
  panInside: function(s, l) {
2333
2333
  l = l || {};
2334
- var u = U(l.paddingTopLeft || l.padding || [0, 0]), g = U(l.paddingBottomRight || l.padding || [0, 0]), p = this.project(this.getCenter()), x = this.project(s), T = this.getPixelBounds(), k = F([T.min.add(u), T.max.subtract(g)]), R = k.getSize();
2334
+ var u = U(l.paddingTopLeft || l.padding || [0, 0]), g = U(l.paddingBottomRight || l.padding || [0, 0]), p = this.project(this.getCenter()), x = this.project(s), S = this.getPixelBounds(), k = F([S.min.add(u), S.max.subtract(g)]), R = k.getSize();
2335
2335
  if (!k.contains(x)) {
2336
2336
  this._enforcingBounds = !0;
2337
2337
  var O = x.subtract(k.getCenter()), j = k.extend(x).getSize().subtract(R);
@@ -2417,8 +2417,8 @@ function $u() {
2417
2417
  if (this._container._leaflet_id) {
2418
2418
  var l = s.coords.latitude, u = s.coords.longitude, g = new q(l, u), p = g.toBounds(s.coords.accuracy * 2), x = this._locateOptions;
2419
2419
  if (x.setView) {
2420
- var T = this.getBoundsZoom(p);
2421
- this.setView(g, x.maxZoom ? Math.min(T, x.maxZoom) : T);
2420
+ var S = this.getBoundsZoom(p);
2421
+ this.setView(g, x.maxZoom ? Math.min(S, x.maxZoom) : S);
2422
2422
  }
2423
2423
  var k = {
2424
2424
  latlng: g,
@@ -2500,8 +2500,8 @@ function $u() {
2500
2500
  // instead returns the minimum zoom level on which the map view fits into
2501
2501
  // the given bounds in its entirety.
2502
2502
  getBoundsZoom: function(s, l, u) {
2503
- s = Q(s), u = U(u || [0, 0]);
2504
- var g = this.getZoom() || 0, p = this.getMinZoom(), x = this.getMaxZoom(), T = s.getNorthWest(), k = s.getSouthEast(), R = this.getSize().subtract(u), O = F(this.project(k, g), this.project(T, g)).getSize(), j = Y.any3d ? this.options.zoomSnap : 1, $ = R.x / O.x, ct = R.y / O.y, ne = l ? Math.max($, ct) : Math.min($, ct);
2503
+ s = $(s), u = U(u || [0, 0]);
2504
+ var g = this.getZoom() || 0, p = this.getMinZoom(), x = this.getMaxZoom(), S = s.getNorthWest(), k = s.getSouthEast(), R = this.getSize().subtract(u), O = F(this.project(k, g), this.project(S, g)).getSize(), j = Y.any3d ? this.options.zoomSnap : 1, Q = R.x / O.x, ct = R.y / O.y, ne = l ? Math.max(Q, ct) : Math.min(Q, ct);
2505
2505
  return g = this.getScaleZoom(ne, g), j && (g = Math.round(g / (j / 100)) * (j / 100), g = l ? Math.ceil(g / j) * j : Math.floor(g / j) * j), Math.max(p, Math.min(x, g));
2506
2506
  },
2507
2507
  // @method getSize(): Point
@@ -2612,7 +2612,7 @@ function $u() {
2612
2612
  // value is between -180 and +180 degrees, and the majority of the bounds
2613
2613
  // overlaps the CRS's bounds.
2614
2614
  wrapLatLngBounds: function(s) {
2615
- return this.options.crs.wrapLatLngBounds(Q(s));
2615
+ return this.options.crs.wrapLatLngBounds($(s));
2616
2616
  },
2617
2617
  // @method distance(latlng1: LatLng, latlng2: LatLng): Number
2618
2618
  // Returns the distance between two geographical coordinates according to
@@ -2742,16 +2742,16 @@ function $u() {
2742
2742
  Math.max(Math.abs(s.x), Math.abs(s.y)) >= this.options.transform3DLimit && this._resetView(this.getCenter(), this.getZoom());
2743
2743
  },
2744
2744
  _findEventTargets: function(s, l) {
2745
- for (var u = [], g, p = l === "mouseout" || l === "mouseover", x = s.target || s.srcElement, T = !1; x; ) {
2745
+ for (var u = [], g, p = l === "mouseout" || l === "mouseover", x = s.target || s.srcElement, S = !1; x; ) {
2746
2746
  if (g = this._targets[c(x)], g && (l === "click" || l === "preclick") && this._draggableMoved(g)) {
2747
- T = !0;
2747
+ S = !0;
2748
2748
  break;
2749
2749
  }
2750
2750
  if (g && g.listens(l, !0) && (p && !pa(x, s) || (u.push(g), p)) || x === this._container)
2751
2751
  break;
2752
2752
  x = x.parentNode;
2753
2753
  }
2754
- return !u.length && !T && !p && this.listens(l, !0) && (u = [this]), u;
2754
+ return !u.length && !S && !p && this.listens(l, !0) && (u = [this]), u;
2755
2755
  },
2756
2756
  _isClickDisabled: function(s) {
2757
2757
  for (; s && s !== this._container; ) {
@@ -2775,8 +2775,8 @@ function $u() {
2775
2775
  }
2776
2776
  var p = this._findEventTargets(s, l);
2777
2777
  if (u) {
2778
- for (var x = [], T = 0; T < u.length; T++)
2779
- u[T].listens(l, !0) && x.push(u[T]);
2778
+ for (var x = [], S = 0; S < u.length; S++)
2779
+ u[S].listens(l, !0) && x.push(u[S]);
2780
2780
  p = x.concat(p);
2781
2781
  }
2782
2782
  if (p.length) {
@@ -2788,8 +2788,8 @@ function $u() {
2788
2788
  var O = k.getLatLng && (!k._radius || k._radius <= 10);
2789
2789
  R.containerPoint = O ? this.latLngToContainerPoint(k.getLatLng()) : this.mouseEventToContainerPoint(s), R.layerPoint = this.containerPointToLayerPoint(R.containerPoint), R.latlng = O ? k.getLatLng() : this.layerPointToLatLng(R.layerPoint);
2790
2790
  }
2791
- for (T = 0; T < p.length; T++)
2792
- if (p[T].fire(l, R, !0), R.originalEvent._stopped || p[T].options.bubblingMouseEvents === !1 && S(this._mouseEvents, l) !== -1)
2791
+ for (S = 0; S < p.length; S++)
2792
+ if (p[S].fire(l, R, !0), R.originalEvent._stopped || p[S].options.bubblingMouseEvents === !1 && T(this._mouseEvents, l) !== -1)
2793
2793
  return;
2794
2794
  }
2795
2795
  },
@@ -2849,8 +2849,8 @@ function $u() {
2849
2849
  _limitCenter: function(s, l, u) {
2850
2850
  if (!u)
2851
2851
  return s;
2852
- var g = this.project(s, l), p = this.getSize().divideBy(2), x = new rt(g.subtract(p), g.add(p)), T = this._getBoundsOffset(x, u, l);
2853
- return Math.abs(T.x) <= 1 && Math.abs(T.y) <= 1 ? s : this.unproject(g.add(T), l);
2852
+ var g = this.project(s, l), p = this.getSize().divideBy(2), x = new rt(g.subtract(p), g.add(p)), S = this._getBoundsOffset(x, u, l);
2853
+ return Math.abs(S.x) <= 1 && Math.abs(S.y) <= 1 ? s : this.unproject(g.add(S), l);
2854
2854
  },
2855
2855
  // adjust offset for view to get inside bounds
2856
2856
  _limitOffset: function(s, l) {
@@ -2864,8 +2864,8 @@ function $u() {
2864
2864
  var g = F(
2865
2865
  this.project(l.getNorthEast(), u),
2866
2866
  this.project(l.getSouthWest(), u)
2867
- ), p = g.min.subtract(s.min), x = g.max.subtract(s.max), T = this._rebound(p.x, -x.x), k = this._rebound(p.y, -x.y);
2868
- return new N(T, k);
2867
+ ), p = g.min.subtract(s.min), x = g.max.subtract(s.max), S = this._rebound(p.x, -x.x), k = this._rebound(p.y, -x.y);
2868
+ return new N(S, k);
2869
2869
  },
2870
2870
  _rebound: function(s, l) {
2871
2871
  return s + l > 0 ? Math.round(s - l) / 2 : Math.max(0, Math.ceil(s)) - Math.max(0, Math.floor(l));
@@ -2992,8 +2992,8 @@ function $u() {
2992
2992
  _initControlPos: function() {
2993
2993
  var s = this._controlCorners = {}, l = "leaflet-", u = this._controlContainer = mt("div", l + "control-container", this._container);
2994
2994
  function g(p, x) {
2995
- var T = l + p + " " + l + x;
2996
- s[p + x] = mt("div", T, u);
2995
+ var S = l + p + " " + l + x;
2996
+ s[p + x] = mt("div", S, u);
2997
2997
  }
2998
2998
  g("top", "left"), g("top", "right"), g("bottom", "left"), g("bottom", "right");
2999
2999
  },
@@ -3140,8 +3140,8 @@ function $u() {
3140
3140
  p.innerHTML = " " + s.name;
3141
3141
  var x = document.createElement("span");
3142
3142
  l.appendChild(x), x.appendChild(g), x.appendChild(p);
3143
- var T = s.overlay ? this._overlaysList : this._baseLayersList;
3144
- return T.appendChild(l), this._checkDisabledLayers(), l;
3143
+ var S = s.overlay ? this._overlaysList : this._baseLayersList;
3144
+ return S.appendChild(l), this._checkDisabledLayers(), l;
3145
3145
  },
3146
3146
  _onInputClick: function() {
3147
3147
  if (!this._preventClick) {
@@ -3447,33 +3447,33 @@ function $u() {
3447
3447
  }
3448
3448
  });
3449
3449
  function Gh(s, l, u) {
3450
- var g, p = [1, 4, 2, 8], x, T, k, R, O, j, $, ct;
3450
+ var g, p = [1, 4, 2, 8], x, S, k, R, O, j, Q, ct;
3451
3451
  for (x = 0, j = s.length; x < j; x++)
3452
3452
  s[x]._code = qi(s[x], l);
3453
3453
  for (k = 0; k < 4; k++) {
3454
- for ($ = p[k], g = [], x = 0, j = s.length, T = j - 1; x < j; T = x++)
3455
- R = s[x], O = s[T], R._code & $ ? O._code & $ || (ct = gs(O, R, $, l, u), ct._code = qi(ct, l), g.push(ct)) : (O._code & $ && (ct = gs(O, R, $, l, u), ct._code = qi(ct, l), g.push(ct)), g.push(R));
3454
+ for (Q = p[k], g = [], x = 0, j = s.length, S = j - 1; x < j; S = x++)
3455
+ R = s[x], O = s[S], R._code & Q ? O._code & Q || (ct = gs(O, R, Q, l, u), ct._code = qi(ct, l), g.push(ct)) : (O._code & Q && (ct = gs(O, R, Q, l, u), ct._code = qi(ct, l), g.push(ct)), g.push(R));
3456
3456
  s = g;
3457
3457
  }
3458
3458
  return s;
3459
3459
  }
3460
3460
  function Uh(s, l) {
3461
- var u, g, p, x, T, k, R, O, j;
3461
+ var u, g, p, x, S, k, R, O, j;
3462
3462
  if (!s || s.length === 0)
3463
3463
  throw new Error("latlngs not passed");
3464
3464
  xe(s) || (console.warn("latlngs are not flat! Only the first ring will be used"), s = s[0]);
3465
- var $ = nt([0, 0]), ct = Q(s), ne = ct.getNorthWest().distanceTo(ct.getSouthWest()) * ct.getNorthEast().distanceTo(ct.getNorthWest());
3466
- ne < 1700 && ($ = va(s));
3465
+ var Q = nt([0, 0]), ct = $(s), ne = ct.getNorthWest().distanceTo(ct.getSouthWest()) * ct.getNorthEast().distanceTo(ct.getNorthWest());
3466
+ ne < 1700 && (Q = va(s));
3467
3467
  var Zt = s.length, Ee = [];
3468
3468
  for (u = 0; u < Zt; u++) {
3469
3469
  var ae = nt(s[u]);
3470
- Ee.push(l.project(nt([ae.lat - $.lat, ae.lng - $.lng])));
3470
+ Ee.push(l.project(nt([ae.lat - Q.lat, ae.lng - Q.lng])));
3471
3471
  }
3472
3472
  for (k = R = O = 0, u = 0, g = Zt - 1; u < Zt; g = u++)
3473
- p = Ee[u], x = Ee[g], T = p.y * x.x - x.y * p.x, R += (p.x + x.x) * T, O += (p.y + x.y) * T, k += T * 3;
3473
+ p = Ee[u], x = Ee[g], S = p.y * x.x - x.y * p.x, R += (p.x + x.x) * S, O += (p.y + x.y) * S, k += S * 3;
3474
3474
  k === 0 ? j = Ee[0] : j = [R / k, O / k];
3475
3475
  var Tn = l.unproject(U(j));
3476
- return nt([Tn.lat + $.lat, Tn.lng + $.lng]);
3476
+ return nt([Tn.lat + Q.lat, Tn.lng + Q.lng]);
3477
3477
  }
3478
3478
  function va(s) {
3479
3479
  for (var l = 0, u = 0, g = 0, p = 0; p < s.length; p++) {
@@ -3503,16 +3503,16 @@ function $u() {
3503
3503
  function Pg(s, l) {
3504
3504
  var u = s.length, g = typeof Uint8Array != void 0 + "" ? Uint8Array : Array, p = new g(u);
3505
3505
  p[0] = p[u - 1] = 1, xa(s, p, l, 0, u - 1);
3506
- var x, T = [];
3506
+ var x, S = [];
3507
3507
  for (x = 0; x < u; x++)
3508
- p[x] && T.push(s[x]);
3509
- return T;
3508
+ p[x] && S.push(s[x]);
3509
+ return S;
3510
3510
  }
3511
3511
  function xa(s, l, u, g, p) {
3512
- var x = 0, T, k, R;
3512
+ var x = 0, S, k, R;
3513
3513
  for (k = g + 1; k <= p - 1; k++)
3514
- R = pr(s[k], s[g], s[p], !0), R > x && (T = k, x = R);
3515
- x > u && (l[T] = 1, xa(s, l, u, g, T), xa(s, l, u, T, p));
3514
+ R = pr(s[k], s[g], s[p], !0), R > x && (S = k, x = R);
3515
+ x > u && (l[S] = 1, xa(s, l, u, g, S), xa(s, l, u, S, p));
3516
3516
  }
3517
3517
  function kg(s, l) {
3518
3518
  for (var u = [s[0]], g = 1, p = 0, x = s.length; g < x; g++)
@@ -3521,18 +3521,18 @@ function $u() {
3521
3521
  }
3522
3522
  var Wh;
3523
3523
  function Hh(s, l, u, g, p) {
3524
- var x = g ? Wh : qi(s, u), T = qi(l, u), k, R, O;
3525
- for (Wh = T; ; ) {
3526
- if (!(x | T))
3524
+ var x = g ? Wh : qi(s, u), S = qi(l, u), k, R, O;
3525
+ for (Wh = S; ; ) {
3526
+ if (!(x | S))
3527
3527
  return [s, l];
3528
- if (x & T)
3528
+ if (x & S)
3529
3529
  return !1;
3530
- k = x || T, R = gs(s, l, k, u, p), O = qi(R, u), k === x ? (s = R, x = O) : (l = R, T = O);
3530
+ k = x || S, R = gs(s, l, k, u, p), O = qi(R, u), k === x ? (s = R, x = O) : (l = R, S = O);
3531
3531
  }
3532
3532
  }
3533
3533
  function gs(s, l, u, g, p) {
3534
- var x = l.x - s.x, T = l.y - s.y, k = g.min, R = g.max, O, j;
3535
- return u & 8 ? (O = s.x + x * (R.y - s.y) / T, j = R.y) : u & 4 ? (O = s.x + x * (k.y - s.y) / T, j = k.y) : u & 2 ? (O = R.x, j = s.y + T * (R.x - s.x) / x) : u & 1 && (O = k.x, j = s.y + T * (k.x - s.x) / x), new N(O, j, p);
3534
+ var x = l.x - s.x, S = l.y - s.y, k = g.min, R = g.max, O, j;
3535
+ return u & 8 ? (O = s.x + x * (R.y - s.y) / S, j = R.y) : u & 4 ? (O = s.x + x * (k.y - s.y) / S, j = k.y) : u & 2 ? (O = R.x, j = s.y + S * (R.x - s.x) / x) : u & 1 && (O = k.x, j = s.y + S * (k.x - s.x) / x), new N(O, j, p);
3536
3536
  }
3537
3537
  function qi(s, l) {
3538
3538
  var u = 0;
@@ -3543,8 +3543,8 @@ function $u() {
3543
3543
  return u * u + g * g;
3544
3544
  }
3545
3545
  function pr(s, l, u, g) {
3546
- var p = l.x, x = l.y, T = u.x - p, k = u.y - x, R = T * T + k * k, O;
3547
- return R > 0 && (O = ((s.x - p) * T + (s.y - x) * k) / R, O > 1 ? (p = u.x, x = u.y) : O > 0 && (p += T * O, x += k * O)), T = s.x - p, k = s.y - x, g ? T * T + k * k : new N(p, x);
3546
+ var p = l.x, x = l.y, S = u.x - p, k = u.y - x, R = S * S + k * k, O;
3547
+ return R > 0 && (O = ((s.x - p) * S + (s.y - x) * k) / R, O > 1 ? (p = u.x, x = u.y) : O > 0 && (p += S * O, x += k * O)), S = s.x - p, k = s.y - x, g ? S * S + k * k : new N(p, x);
3548
3548
  }
3549
3549
  function xe(s) {
3550
3550
  return !b(s[0]) || typeof s[0][0] != "object" && typeof s[0][0] < "u";
@@ -3553,11 +3553,11 @@ function $u() {
3553
3553
  return console.warn("Deprecated use of _flat, please use L.LineUtil.isFlat instead."), xe(s);
3554
3554
  }
3555
3555
  function Kh(s, l) {
3556
- var u, g, p, x, T, k, R, O;
3556
+ var u, g, p, x, S, k, R, O;
3557
3557
  if (!s || s.length === 0)
3558
3558
  throw new Error("latlngs not passed");
3559
3559
  xe(s) || (console.warn("latlngs are not flat! Only the first ring will be used"), s = s[0]);
3560
- var j = nt([0, 0]), $ = Q(s), ct = $.getNorthWest().distanceTo($.getSouthWest()) * $.getNorthEast().distanceTo($.getNorthWest());
3560
+ var j = nt([0, 0]), Q = $(s), ct = Q.getNorthWest().distanceTo(Q.getSouthWest()) * Q.getNorthEast().distanceTo(Q.getNorthWest());
3561
3561
  ct < 1700 && (j = va(s));
3562
3562
  var ne = s.length, Zt = [];
3563
3563
  for (u = 0; u < ne; u++) {
@@ -3570,10 +3570,10 @@ function $u() {
3570
3570
  O = Zt[0];
3571
3571
  else
3572
3572
  for (u = 0, x = 0; u < ne - 1; u++)
3573
- if (T = Zt[u], k = Zt[u + 1], p = T.distanceTo(k), x += p, x > g) {
3573
+ if (S = Zt[u], k = Zt[u + 1], p = S.distanceTo(k), x += p, x > g) {
3574
3574
  R = (x - g) / p, O = [
3575
- k.x - R * (k.x - T.x),
3576
- k.y - R * (k.y - T.y)
3575
+ k.x - R * (k.x - S.x),
3576
+ k.y - R * (k.y - S.y)
3577
3577
  ];
3578
3578
  break;
3579
3579
  }
@@ -3605,13 +3605,13 @@ function $u() {
3605
3605
  R_MINOR: 6356752314245179e-9,
3606
3606
  bounds: new rt([-2003750834279e-5, -1549657073972e-5], [2003750834279e-5, 1876465623138e-5]),
3607
3607
  project: function(s) {
3608
- var l = Math.PI / 180, u = this.R, g = s.lat * l, p = this.R_MINOR / u, x = Math.sqrt(1 - p * p), T = x * Math.sin(g), k = Math.tan(Math.PI / 4 - g / 2) / Math.pow((1 - T) / (1 + T), x / 2);
3608
+ var l = Math.PI / 180, u = this.R, g = s.lat * l, p = this.R_MINOR / u, x = Math.sqrt(1 - p * p), S = x * Math.sin(g), k = Math.tan(Math.PI / 4 - g / 2) / Math.pow((1 - S) / (1 + S), x / 2);
3609
3609
  return g = -u * Math.log(Math.max(k, 1e-10)), new N(s.lng * l * u, g);
3610
3610
  },
3611
3611
  unproject: function(s) {
3612
- for (var l = 180 / Math.PI, u = this.R, g = this.R_MINOR / u, p = Math.sqrt(1 - g * g), x = Math.exp(-s.y / u), T = Math.PI / 2 - 2 * Math.atan(x), k = 0, R = 0.1, O; k < 15 && Math.abs(R) > 1e-7; k++)
3613
- O = p * Math.sin(T), O = Math.pow((1 - O) / (1 + O), p / 2), R = Math.PI / 2 - 2 * Math.atan(x * O) - T, T += R;
3614
- return new q(T * l, s.x * l / u);
3612
+ for (var l = 180 / Math.PI, u = this.R, g = this.R_MINOR / u, p = Math.sqrt(1 - g * g), x = Math.exp(-s.y / u), S = Math.PI / 2 - 2 * Math.atan(x), k = 0, R = 0.1, O; k < 15 && Math.abs(R) > 1e-7; k++)
3613
+ O = p * Math.sin(S), O = Math.pow((1 - O) / (1 + O), p / 2), R = Math.PI / 2 - 2 * Math.atan(x * O) - S, S += R;
3614
+ return new q(S * l, s.x * l / u);
3615
3615
  }
3616
3616
  }, Ag = {
3617
3617
  __proto__: null,
@@ -3850,7 +3850,7 @@ function $u() {
3850
3850
  }
3851
3851
  }), Og = function(s, l) {
3852
3852
  return new En(s, l);
3853
- }, Qe = En.extend({
3853
+ }, $e = En.extend({
3854
3854
  addLayer: function(s) {
3855
3855
  return this.hasLayer(s) ? this : (s.addEventParent(this), En.prototype.addLayer.call(this, s), this.fire("layeradd", { layer: s }));
3856
3856
  },
@@ -3883,7 +3883,7 @@ function $u() {
3883
3883
  return s;
3884
3884
  }
3885
3885
  }), Fg = function(s, l) {
3886
- return new Qe(s, l);
3886
+ return new $e(s, l);
3887
3887
  }, wn = gt.extend({
3888
3888
  /* @section
3889
3889
  * @aka Icon options
@@ -4026,14 +4026,14 @@ function $u() {
4026
4026
  return this._draggable && this._draggable._moved;
4027
4027
  },
4028
4028
  _adjustPan: function(s) {
4029
- var l = this._marker, u = l._map, g = this._marker.options.autoPanSpeed, p = this._marker.options.autoPanPadding, x = Ki(l._icon), T = u.getPixelBounds(), k = u.getPixelOrigin(), R = F(
4030
- T.min._subtract(k).add(p),
4031
- T.max._subtract(k).subtract(p)
4029
+ var l = this._marker, u = l._map, g = this._marker.options.autoPanSpeed, p = this._marker.options.autoPanPadding, x = Ki(l._icon), S = u.getPixelBounds(), k = u.getPixelOrigin(), R = F(
4030
+ S.min._subtract(k).add(p),
4031
+ S.max._subtract(k).subtract(p)
4032
4032
  );
4033
4033
  if (!R.contains(x)) {
4034
4034
  var O = U(
4035
- (Math.max(R.max.x, x.x) - R.max.x) / (T.max.x - R.max.x) - (Math.min(R.min.x, x.x) - R.min.x) / (T.min.x - R.min.x),
4036
- (Math.max(R.max.y, x.y) - R.max.y) / (T.max.y - R.max.y) - (Math.min(R.min.y, x.y) - R.min.y) / (T.min.y - R.min.y)
4035
+ (Math.max(R.max.x, x.x) - R.max.x) / (S.max.x - R.max.x) - (Math.min(R.min.x, x.x) - R.min.x) / (S.min.x - R.min.x),
4036
+ (Math.max(R.max.y, x.y) - R.max.y) / (S.max.y - R.max.y) - (Math.min(R.min.y, x.y) - R.min.y) / (S.min.y - R.min.y)
4037
4037
  ).multiplyBy(g);
4038
4038
  u.panBy(O, { animate: !1 }), this._draggable._newPos._add(O), this._draggable._startPos._add(O), Ft(l._icon, this._draggable._newPos), this._onDrag(s), this._panRequest = V(this._adjustPan.bind(this, s));
4039
4039
  }
@@ -4415,11 +4415,11 @@ function $u() {
4415
4415
  _project: function() {
4416
4416
  var s = this._latlng.lng, l = this._latlng.lat, u = this._map, g = u.options.crs;
4417
4417
  if (g.distance === Ct.distance) {
4418
- var p = Math.PI / 180, x = this._mRadius / Ct.R / p, T = u.project([l + x, s]), k = u.project([l - x, s]), R = T.add(k).divideBy(2), O = u.unproject(R).lat, j = Math.acos((Math.cos(x * p) - Math.sin(l * p) * Math.sin(O * p)) / (Math.cos(l * p) * Math.cos(O * p))) / p;
4419
- (isNaN(j) || j === 0) && (j = x / Math.cos(Math.PI / 180 * l)), this._point = R.subtract(u.getPixelOrigin()), this._radius = isNaN(j) ? 0 : R.x - u.project([O, s - j]).x, this._radiusY = R.y - T.y;
4418
+ var p = Math.PI / 180, x = this._mRadius / Ct.R / p, S = u.project([l + x, s]), k = u.project([l - x, s]), R = S.add(k).divideBy(2), O = u.unproject(R).lat, j = Math.acos((Math.cos(x * p) - Math.sin(l * p) * Math.sin(O * p)) / (Math.cos(l * p) * Math.cos(O * p))) / p;
4419
+ (isNaN(j) || j === 0) && (j = x / Math.cos(Math.PI / 180 * l)), this._point = R.subtract(u.getPixelOrigin()), this._radius = isNaN(j) ? 0 : R.x - u.project([O, s - j]).x, this._radiusY = R.y - S.y;
4420
4420
  } else {
4421
- var $ = g.unproject(g.project(this._latlng).subtract([this._mRadius, 0]));
4422
- this._point = u.latLngToLayerPoint(this._latlng), this._radius = this._point.x - u.latLngToLayerPoint($).x;
4421
+ var Q = g.unproject(g.project(this._latlng).subtract([this._mRadius, 0]));
4422
+ this._point = u.latLngToLayerPoint(this._latlng), this._radius = this._point.x - u.latLngToLayerPoint(Q).x;
4423
4423
  }
4424
4424
  this._updateBounds();
4425
4425
  }
@@ -4427,7 +4427,7 @@ function $u() {
4427
4427
  function Gg(s, l, u) {
4428
4428
  return new La(s, l, u);
4429
4429
  }
4430
- var $e = Pi.extend({
4430
+ var Qe = Pi.extend({
4431
4431
  // @section
4432
4432
  // @aka Polyline options
4433
4433
  options: {
@@ -4460,11 +4460,11 @@ function $u() {
4460
4460
  // @method closestLayerPoint(p: Point): Point
4461
4461
  // Returns the point closest to `p` on the Polyline.
4462
4462
  closestLayerPoint: function(s) {
4463
- for (var l = 1 / 0, u = null, g = pr, p, x, T = 0, k = this._parts.length; T < k; T++)
4464
- for (var R = this._parts[T], O = 1, j = R.length; O < j; O++) {
4463
+ for (var l = 1 / 0, u = null, g = pr, p, x, S = 0, k = this._parts.length; S < k; S++)
4464
+ for (var R = this._parts[S], O = 1, j = R.length; O < j; O++) {
4465
4465
  p = R[O - 1], x = R[O];
4466
- var $ = g(s, p, x, !0);
4467
- $ < l && (l = $, u = g(s, p, x));
4466
+ var Q = g(s, p, x, !0);
4467
+ Q < l && (l = Q, u = g(s, p, x));
4468
4468
  }
4469
4469
  return u && (u.distance = Math.sqrt(l)), u;
4470
4470
  },
@@ -4512,11 +4512,11 @@ function $u() {
4512
4512
  },
4513
4513
  // recursively turns latlngs into a set of rings with projected coordinates
4514
4514
  _projectLatlngs: function(s, l, u) {
4515
- var g = s[0] instanceof q, p = s.length, x, T;
4515
+ var g = s[0] instanceof q, p = s.length, x, S;
4516
4516
  if (g) {
4517
- for (T = [], x = 0; x < p; x++)
4518
- T[x] = this._map.latLngToLayerPoint(s[x]), u.extend(T[x]);
4519
- l.push(T);
4517
+ for (S = [], x = 0; x < p; x++)
4518
+ S[x] = this._map.latLngToLayerPoint(s[x]), u.extend(S[x]);
4519
+ l.push(S);
4520
4520
  } else
4521
4521
  for (x = 0; x < p; x++)
4522
4522
  this._projectLatlngs(s[x], l, u);
@@ -4529,10 +4529,10 @@ function $u() {
4529
4529
  this._parts = this._rings;
4530
4530
  return;
4531
4531
  }
4532
- var l = this._parts, u, g, p, x, T, k, R;
4532
+ var l = this._parts, u, g, p, x, S, k, R;
4533
4533
  for (u = 0, p = 0, x = this._rings.length; u < x; u++)
4534
- for (R = this._rings[u], g = 0, T = R.length; g < T - 1; g++)
4535
- k = Hh(R[g], R[g + 1], s, g, !0), k && (l[p] = l[p] || [], l[p].push(k[0]), (k[1] !== R[g + 1] || g === T - 2) && (l[p].push(k[1]), p++));
4534
+ for (R = this._rings[u], g = 0, S = R.length; g < S - 1; g++)
4535
+ k = Hh(R[g], R[g + 1], s, g, !0), k && (l[p] = l[p] || [], l[p].push(k[0]), (k[1] !== R[g + 1] || g === S - 2) && (l[p].push(k[1]), p++));
4536
4536
  }
4537
4537
  },
4538
4538
  // simplify each clipped part of the polyline for performance
@@ -4548,21 +4548,21 @@ function $u() {
4548
4548
  },
4549
4549
  // Needed by the `Canvas` renderer for interactivity
4550
4550
  _containsPoint: function(s, l) {
4551
- var u, g, p, x, T, k, R = this._clickTolerance();
4551
+ var u, g, p, x, S, k, R = this._clickTolerance();
4552
4552
  if (!this._pxBounds || !this._pxBounds.contains(s))
4553
4553
  return !1;
4554
4554
  for (u = 0, x = this._parts.length; u < x; u++)
4555
- for (k = this._parts[u], g = 0, T = k.length, p = T - 1; g < T; p = g++)
4555
+ for (k = this._parts[u], g = 0, S = k.length, p = S - 1; g < S; p = g++)
4556
4556
  if (!(!l && g === 0) && jh(s, k[p], k[g]) <= R)
4557
4557
  return !0;
4558
4558
  return !1;
4559
4559
  }
4560
4560
  });
4561
4561
  function Ug(s, l) {
4562
- return new $e(s, l);
4562
+ return new Qe(s, l);
4563
4563
  }
4564
- $e._flat = Xh;
4565
- var Ln = $e.extend({
4564
+ Qe._flat = Xh;
4565
+ var Ln = Qe.extend({
4566
4566
  options: {
4567
4567
  fill: !0
4568
4568
  },
@@ -4577,11 +4577,11 @@ function $u() {
4577
4577
  return Uh(this._defaultShape(), this._map.options.crs);
4578
4578
  },
4579
4579
  _convertLatLngs: function(s) {
4580
- var l = $e.prototype._convertLatLngs.call(this, s), u = l.length;
4580
+ var l = Qe.prototype._convertLatLngs.call(this, s), u = l.length;
4581
4581
  return u >= 2 && l[0] instanceof q && l[0].equals(l[u - 1]) && l.pop(), l;
4582
4582
  },
4583
4583
  _setLatLngs: function(s) {
4584
- $e.prototype._setLatLngs.call(this, s), xe(this._latlngs) && (this._latlngs = [this._latlngs]);
4584
+ Qe.prototype._setLatLngs.call(this, s), xe(this._latlngs) && (this._latlngs = [this._latlngs]);
4585
4585
  },
4586
4586
  _defaultShape: function() {
4587
4587
  return xe(this._latlngs[0]) ? this._latlngs[0] : this._latlngs[0][0];
@@ -4602,19 +4602,19 @@ function $u() {
4602
4602
  },
4603
4603
  // Needed by the `Canvas` renderer for interactivity
4604
4604
  _containsPoint: function(s) {
4605
- var l = !1, u, g, p, x, T, k, R, O;
4605
+ var l = !1, u, g, p, x, S, k, R, O;
4606
4606
  if (!this._pxBounds || !this._pxBounds.contains(s))
4607
4607
  return !1;
4608
4608
  for (x = 0, R = this._parts.length; x < R; x++)
4609
- for (u = this._parts[x], T = 0, O = u.length, k = O - 1; T < O; k = T++)
4610
- g = u[T], p = u[k], g.y > s.y != p.y > s.y && s.x < (p.x - g.x) * (s.y - g.y) / (p.y - g.y) + g.x && (l = !l);
4611
- return l || $e.prototype._containsPoint.call(this, s, !0);
4609
+ for (u = this._parts[x], S = 0, O = u.length, k = O - 1; S < O; k = S++)
4610
+ g = u[S], p = u[k], g.y > s.y != p.y > s.y && s.x < (p.x - g.x) * (s.y - g.y) / (p.y - g.y) + g.x && (l = !l);
4611
+ return l || Qe.prototype._containsPoint.call(this, s, !0);
4612
4612
  }
4613
4613
  });
4614
4614
  function Zg(s, l) {
4615
4615
  return new Ln(s, l);
4616
4616
  }
4617
- var ti = Qe.extend({
4617
+ var ti = $e.extend({
4618
4618
  /* @section
4619
4619
  * @aka GeoJSON options
4620
4620
  *
@@ -4679,8 +4679,8 @@ function $u() {
4679
4679
  var x = this.options;
4680
4680
  if (x.filter && !x.filter(s))
4681
4681
  return this;
4682
- var T = ms(s, x);
4683
- return T ? (T.feature = xs(s), T.defaultOptions = T.options, this.resetStyle(T), x.onEachFeature && x.onEachFeature(s, T), this.addLayer(T)) : this;
4682
+ var S = ms(s, x);
4683
+ return S ? (S.feature = xs(s), S.defaultOptions = S.options, this.resetStyle(S), x.onEachFeature && x.onEachFeature(s, S), this.addLayer(S)) : this;
4684
4684
  },
4685
4685
  // @method resetStyle( <Path> layer? ): this
4686
4686
  // Resets the given vector layer's style to the original GeoJSON style, useful for resetting style after hover events.
@@ -4700,38 +4700,38 @@ function $u() {
4700
4700
  }
4701
4701
  });
4702
4702
  function ms(s, l) {
4703
- var u = s.type === "Feature" ? s.geometry : s, g = u ? u.coordinates : null, p = [], x = l && l.pointToLayer, T = l && l.coordsToLatLng || ba, k, R, O, j;
4703
+ var u = s.type === "Feature" ? s.geometry : s, g = u ? u.coordinates : null, p = [], x = l && l.pointToLayer, S = l && l.coordsToLatLng || ba, k, R, O, j;
4704
4704
  if (!g && !u)
4705
4705
  return null;
4706
4706
  switch (u.type) {
4707
4707
  case "Point":
4708
- return k = T(g), qh(x, s, k, l);
4708
+ return k = S(g), qh(x, s, k, l);
4709
4709
  case "MultiPoint":
4710
4710
  for (O = 0, j = g.length; O < j; O++)
4711
- k = T(g[O]), p.push(qh(x, s, k, l));
4712
- return new Qe(p);
4711
+ k = S(g[O]), p.push(qh(x, s, k, l));
4712
+ return new $e(p);
4713
4713
  case "LineString":
4714
4714
  case "MultiLineString":
4715
- return R = ys(g, u.type === "LineString" ? 0 : 1, T), new $e(R, l);
4715
+ return R = ys(g, u.type === "LineString" ? 0 : 1, S), new Qe(R, l);
4716
4716
  case "Polygon":
4717
4717
  case "MultiPolygon":
4718
- return R = ys(g, u.type === "Polygon" ? 1 : 2, T), new Ln(R, l);
4718
+ return R = ys(g, u.type === "Polygon" ? 1 : 2, S), new Ln(R, l);
4719
4719
  case "GeometryCollection":
4720
4720
  for (O = 0, j = u.geometries.length; O < j; O++) {
4721
- var $ = ms({
4721
+ var Q = ms({
4722
4722
  geometry: u.geometries[O],
4723
4723
  type: "Feature",
4724
4724
  properties: s.properties
4725
4725
  }, l);
4726
- $ && p.push($);
4726
+ Q && p.push(Q);
4727
4727
  }
4728
- return new Qe(p);
4728
+ return new $e(p);
4729
4729
  case "FeatureCollection":
4730
4730
  for (O = 0, j = u.features.length; O < j; O++) {
4731
4731
  var ct = ms(u.features[O], l);
4732
4732
  ct && p.push(ct);
4733
4733
  }
4734
- return new Qe(p);
4734
+ return new $e(p);
4735
4735
  default:
4736
4736
  throw new Error("Invalid GeoJSON object.");
4737
4737
  }
@@ -4743,15 +4743,15 @@ function $u() {
4743
4743
  return new q(s[1], s[0], s[2]);
4744
4744
  }
4745
4745
  function ys(s, l, u) {
4746
- for (var g = [], p = 0, x = s.length, T; p < x; p++)
4747
- T = l ? ys(s[p], l - 1, u) : (u || ba)(s[p]), g.push(T);
4746
+ for (var g = [], p = 0, x = s.length, S; p < x; p++)
4747
+ S = l ? ys(s[p], l - 1, u) : (u || ba)(s[p]), g.push(S);
4748
4748
  return g;
4749
4749
  }
4750
4750
  function Ca(s, l) {
4751
4751
  return s = nt(s), s.alt !== void 0 ? [m(s.lng, l), m(s.lat, l), m(s.alt, l)] : [m(s.lng, l), m(s.lat, l)];
4752
4752
  }
4753
4753
  function vs(s, l, u, g) {
4754
- for (var p = [], x = 0, T = s.length; x < T; x++)
4754
+ for (var p = [], x = 0, S = s.length; x < S; x++)
4755
4755
  p.push(l ? vs(s[x], xe(s[x]) ? 0 : l - 1, u, g) : Ca(s[x], g));
4756
4756
  return !l && u && p.length > 0 && p.push(p[0].slice()), p;
4757
4757
  }
@@ -4773,7 +4773,7 @@ function $u() {
4773
4773
  });
4774
4774
  }
4775
4775
  };
4776
- _s.include(Ta), La.include(Ta), ps.include(Ta), $e.include({
4776
+ _s.include(Ta), La.include(Ta), ps.include(Ta), Qe.include({
4777
4777
  toGeoJSON: function(s) {
4778
4778
  var l = !xe(this._latlngs), u = vs(this._latlngs, l ? 1 : 0, !1, s);
4779
4779
  return bn(this, {
@@ -4813,8 +4813,8 @@ function $u() {
4813
4813
  if (u)
4814
4814
  g.push(x.geometry);
4815
4815
  else {
4816
- var T = xs(x);
4817
- T.type === "FeatureCollection" ? g.push.apply(g, T.features) : g.push(T);
4816
+ var S = xs(x);
4817
+ S.type === "FeatureCollection" ? g.push.apply(g, S.features) : g.push(S);
4818
4818
  }
4819
4819
  }
4820
4820
  }), u ? bn(this, {
@@ -4858,7 +4858,7 @@ function $u() {
4858
4858
  className: ""
4859
4859
  },
4860
4860
  initialize: function(s, l, u) {
4861
- this._url = s, this._bounds = Q(l), E(this, u);
4861
+ this._url = s, this._bounds = $(l), E(this, u);
4862
4862
  },
4863
4863
  onAdd: function() {
4864
4864
  this._image || (this._initImage(), this.options.opacity < 1 && this._updateOpacity()), this.options.interactive && (at(this._image, "leaflet-interactive"), this.addInteractiveTarget(this._image)), this.getPane().appendChild(this._image), this._reset();
@@ -4892,7 +4892,7 @@ function $u() {
4892
4892
  // @method setBounds(bounds: LatLngBounds): this
4893
4893
  // Update the bounds that this ImageOverlay covers
4894
4894
  setBounds: function(s) {
4895
- return this._bounds = Q(s), this._map && this._reset(), this;
4895
+ return this._bounds = $(s), this._map && this._reset(), this;
4896
4896
  },
4897
4897
  getEvents: function() {
4898
4898
  var s = {
@@ -4954,7 +4954,7 @@ function $u() {
4954
4954
  }
4955
4955
  }), Wg = function(s, l, u) {
4956
4956
  return new Es(s, l, u);
4957
- }, Qh = Es.extend({
4957
+ }, $h = Es.extend({
4958
4958
  // @section
4959
4959
  // @aka VideoOverlay options
4960
4960
  options: {
@@ -4986,8 +4986,8 @@ function $u() {
4986
4986
  }
4987
4987
  b(this._url) || (this._url = [this._url]), !this.options.keepAspectRatio && Object.prototype.hasOwnProperty.call(l.style, "objectFit") && (l.style.objectFit = "fill"), l.autoplay = !!this.options.autoplay, l.loop = !!this.options.loop, l.muted = !!this.options.muted, l.playsInline = !!this.options.playsInline;
4988
4988
  for (var x = 0; x < this._url.length; x++) {
4989
- var T = mt("source");
4990
- T.src = this._url[x], l.appendChild(T);
4989
+ var S = mt("source");
4990
+ S.src = this._url[x], l.appendChild(S);
4991
4991
  }
4992
4992
  }
4993
4993
  // @method getElement(): HTMLVideoElement
@@ -4995,9 +4995,9 @@ function $u() {
4995
4995
  // used by this overlay.
4996
4996
  });
4997
4997
  function Hg(s, l, u) {
4998
- return new Qh(s, l, u);
4998
+ return new $h(s, l, u);
4999
4999
  }
5000
- var $h = Es.extend({
5000
+ var Qh = Es.extend({
5001
5001
  _initImage: function() {
5002
5002
  var s = this._image = this._url;
5003
5003
  at(s, "leaflet-image-layer"), this._zoomAnimated && at(s, "leaflet-zoom-animated"), this.options.className && at(s, this.options.className), s.onselectstart = _, s.onmousemove = _;
@@ -5007,7 +5007,7 @@ function $u() {
5007
5007
  // used by this overlay.
5008
5008
  });
5009
5009
  function Xg(s, l, u) {
5010
- return new $h(s, l, u);
5010
+ return new Qh(s, l, u);
5011
5011
  }
5012
5012
  var Be = Pe.extend({
5013
5013
  // @section
@@ -5118,7 +5118,7 @@ function $u() {
5118
5118
  var l = this._source;
5119
5119
  if (!l._map)
5120
5120
  return !1;
5121
- if (l instanceof Qe) {
5121
+ if (l instanceof $e) {
5122
5122
  l = null;
5123
5123
  var u = this._source._layers;
5124
5124
  for (var g in u)
@@ -5285,8 +5285,8 @@ function $u() {
5285
5285
  }
5286
5286
  var s = this._map, l = parseInt(cr(this._container, "marginBottom"), 10) || 0, u = this._container.offsetHeight + l, g = this._containerWidth, p = new N(this._containerLeft, -u - this._containerBottom);
5287
5287
  p._add(Ki(this._container));
5288
- var x = s.layerPointToContainerPoint(p), T = U(this.options.autoPanPadding), k = U(this.options.autoPanPaddingTopLeft || T), R = U(this.options.autoPanPaddingBottomRight || T), O = s.getSize(), j = 0, $ = 0;
5289
- x.x + g + R.x > O.x && (j = x.x + g - O.x + R.x), x.x - j - k.x < 0 && (j = x.x - k.x), x.y + u + R.y > O.y && ($ = x.y + u - O.y + R.y), x.y - $ - k.y < 0 && ($ = x.y - k.y), (j || $) && (this.options.keepInView && (this._autopanning = !0), s.fire("autopanstart").panBy([j, $]));
5288
+ var x = s.layerPointToContainerPoint(p), S = U(this.options.autoPanPadding), k = U(this.options.autoPanPaddingTopLeft || S), R = U(this.options.autoPanPaddingBottomRight || S), O = s.getSize(), j = 0, Q = 0;
5289
+ x.x + g + R.x > O.x && (j = x.x + g - O.x + R.x), x.x - j - k.x < 0 && (j = x.x - k.x), x.y + u + R.y > O.y && (Q = x.y + u - O.y + R.y), x.y - Q - k.y < 0 && (Q = x.y - k.y), (j || Q) && (this.options.keepInView && (this._autopanning = !0), s.fire("autopanstart").panBy([j, Q]));
5290
5290
  }
5291
5291
  },
5292
5292
  _getAnchor: function() {
@@ -5337,7 +5337,7 @@ function $u() {
5337
5337
  // @method openPopup(latlng?: LatLng): this
5338
5338
  // Opens the bound popup at the specified `latlng` or at the default popup anchor if no `latlng` is passed.
5339
5339
  openPopup: function(s) {
5340
- return this._popup && (this instanceof Qe || (this._popup._source = this), this._popup._prepareOpen(s || this._latlng) && this._popup.openOn(this._map)), this;
5340
+ return this._popup && (this instanceof $e || (this._popup._source = this), this._popup._prepareOpen(s || this._latlng) && this._popup.openOn(this._map)), this;
5341
5341
  },
5342
5342
  // @method closePopup(): this
5343
5343
  // Closes the popup bound to this layer if it is open.
@@ -5427,8 +5427,8 @@ function $u() {
5427
5427
  _adjustPan: function() {
5428
5428
  },
5429
5429
  _setPosition: function(s) {
5430
- var l, u, g = this._map, p = this._container, x = g.latLngToContainerPoint(g.getCenter()), T = g.layerPointToContainerPoint(s), k = this.options.direction, R = p.offsetWidth, O = p.offsetHeight, j = U(this.options.offset), $ = this._getAnchor();
5431
- k === "top" ? (l = R / 2, u = O) : k === "bottom" ? (l = R / 2, u = 0) : k === "center" ? (l = R / 2, u = O / 2) : k === "right" ? (l = 0, u = O / 2) : k === "left" ? (l = R, u = O / 2) : T.x < x.x ? (k = "right", l = 0, u = O / 2) : (k = "left", l = R + (j.x + $.x) * 2, u = O / 2), s = s.subtract(U(l, u, !0)).add(j).add($), At(p, "leaflet-tooltip-right"), At(p, "leaflet-tooltip-left"), At(p, "leaflet-tooltip-top"), At(p, "leaflet-tooltip-bottom"), at(p, "leaflet-tooltip-" + k), Ft(p, s);
5430
+ var l, u, g = this._map, p = this._container, x = g.latLngToContainerPoint(g.getCenter()), S = g.layerPointToContainerPoint(s), k = this.options.direction, R = p.offsetWidth, O = p.offsetHeight, j = U(this.options.offset), Q = this._getAnchor();
5431
+ k === "top" ? (l = R / 2, u = O) : k === "bottom" ? (l = R / 2, u = 0) : k === "center" ? (l = R / 2, u = O / 2) : k === "right" ? (l = 0, u = O / 2) : k === "left" ? (l = R, u = O / 2) : S.x < x.x ? (k = "right", l = 0, u = O / 2) : (k = "left", l = R + (j.x + Q.x) * 2, u = O / 2), s = s.subtract(U(l, u, !0)).add(j).add(Q), At(p, "leaflet-tooltip-right"), At(p, "leaflet-tooltip-left"), At(p, "leaflet-tooltip-top"), At(p, "leaflet-tooltip-bottom"), at(p, "leaflet-tooltip-" + k), Ft(p, s);
5432
5432
  },
5433
5433
  _updatePosition: function() {
5434
5434
  var s = this._map.latLngToLayerPoint(this._latlng);
@@ -5486,7 +5486,7 @@ function $u() {
5486
5486
  // @method openTooltip(latlng?: LatLng): this
5487
5487
  // Opens the bound tooltip at the specified `latlng` or at the default tooltip anchor if no `latlng` is passed.
5488
5488
  openTooltip: function(s) {
5489
- return this._tooltip && (this instanceof Qe || (this._tooltip._source = this), this._tooltip._prepareOpen(s) && (this._tooltip.openOn(this._map), this.getElement ? this._setAriaDescribedByOnLayer(this) : this.eachLayer && this.eachLayer(this._setAriaDescribedByOnLayer, this))), this;
5489
+ return this._tooltip && (this instanceof $e || (this._tooltip._source = this), this._tooltip._prepareOpen(s) && (this._tooltip.openOn(this._map), this.getElement ? this._setAriaDescribedByOnLayer(this) : this.eachLayer && this.eachLayer(this._setAriaDescribedByOnLayer, this))), this;
5490
5490
  },
5491
5491
  // @method closeTooltip(): this
5492
5492
  // Closes the tooltip bound to this layer if it is open.
@@ -5786,17 +5786,17 @@ function $u() {
5786
5786
  this._removeAllTiles(), this._tileZoom = void 0;
5787
5787
  },
5788
5788
  _retainParent: function(s, l, u, g) {
5789
- var p = Math.floor(s / 2), x = Math.floor(l / 2), T = u - 1, k = new N(+p, +x);
5790
- k.z = +T;
5789
+ var p = Math.floor(s / 2), x = Math.floor(l / 2), S = u - 1, k = new N(+p, +x);
5790
+ k.z = +S;
5791
5791
  var R = this._tileCoordsToKey(k), O = this._tiles[R];
5792
- return O && O.active ? (O.retain = !0, !0) : (O && O.loaded && (O.retain = !0), T > g ? this._retainParent(p, x, T, g) : !1);
5792
+ return O && O.active ? (O.retain = !0, !0) : (O && O.loaded && (O.retain = !0), S > g ? this._retainParent(p, x, S, g) : !1);
5793
5793
  },
5794
5794
  _retainChildren: function(s, l, u, g) {
5795
5795
  for (var p = 2 * s; p < 2 * s + 2; p++)
5796
5796
  for (var x = 2 * l; x < 2 * l + 2; x++) {
5797
- var T = new N(p, x);
5798
- T.z = u + 1;
5799
- var k = this._tileCoordsToKey(T), R = this._tiles[k];
5797
+ var S = new N(p, x);
5798
+ S.z = u + 1;
5799
+ var k = this._tileCoordsToKey(S), R = this._tiles[k];
5800
5800
  if (R && R.active) {
5801
5801
  R.retain = !0;
5802
5802
  continue;
@@ -5853,7 +5853,7 @@ function $u() {
5853
5853
  if (l) {
5854
5854
  var u = this._clampZoom(l.getZoom());
5855
5855
  if (s === void 0 && (s = l.getCenter()), this._tileZoom !== void 0) {
5856
- var g = this._getTiledPixelBounds(s), p = this._pxBoundsToTileRange(g), x = p.getCenter(), T = [], k = this.options.keepBuffer, R = new rt(
5856
+ var g = this._getTiledPixelBounds(s), p = this._pxBoundsToTileRange(g), x = p.getCenter(), S = [], k = this.options.keepBuffer, R = new rt(
5857
5857
  p.getBottomLeft().subtract([k, -k]),
5858
5858
  p.getTopRight().add([k, -k])
5859
5859
  );
@@ -5867,21 +5867,21 @@ function $u() {
5867
5867
  this._setView(s, u);
5868
5868
  return;
5869
5869
  }
5870
- for (var $ = p.min.y; $ <= p.max.y; $++)
5870
+ for (var Q = p.min.y; Q <= p.max.y; Q++)
5871
5871
  for (var ct = p.min.x; ct <= p.max.x; ct++) {
5872
- var ne = new N(ct, $);
5872
+ var ne = new N(ct, Q);
5873
5873
  if (ne.z = this._tileZoom, !!this._isValidTile(ne)) {
5874
5874
  var Zt = this._tiles[this._tileCoordsToKey(ne)];
5875
- Zt ? Zt.current = !0 : T.push(ne);
5875
+ Zt ? Zt.current = !0 : S.push(ne);
5876
5876
  }
5877
5877
  }
5878
- if (T.sort(function(ae, Tn) {
5878
+ if (S.sort(function(ae, Tn) {
5879
5879
  return ae.distanceTo(x) - Tn.distanceTo(x);
5880
- }), T.length !== 0) {
5880
+ }), S.length !== 0) {
5881
5881
  this._loading || (this._loading = !0, this.fire("loading"));
5882
5882
  var Ee = document.createDocumentFragment();
5883
- for (ct = 0; ct < T.length; ct++)
5884
- this._addTile(T[ct], Ee);
5883
+ for (ct = 0; ct < S.length; ct++)
5884
+ this._addTile(S[ct], Ee);
5885
5885
  this._level.el.appendChild(Ee);
5886
5886
  }
5887
5887
  }
@@ -5897,14 +5897,14 @@ function $u() {
5897
5897
  if (!this.options.bounds)
5898
5898
  return !0;
5899
5899
  var g = this._tileCoordsToBounds(s);
5900
- return Q(this.options.bounds).overlaps(g);
5900
+ return $(this.options.bounds).overlaps(g);
5901
5901
  },
5902
5902
  _keyToBounds: function(s) {
5903
5903
  return this._tileCoordsToBounds(this._keyToTileCoords(s));
5904
5904
  },
5905
5905
  _tileCoordsToNwSe: function(s) {
5906
- var l = this._map, u = this.getTileSize(), g = s.scaleBy(u), p = g.add(u), x = l.unproject(g, s.z), T = l.unproject(p, s.z);
5907
- return [x, T];
5906
+ var l = this._map, u = this.getTileSize(), g = s.scaleBy(u), p = g.add(u), x = l.unproject(g, s.z), S = l.unproject(p, s.z);
5907
+ return [x, S];
5908
5908
  },
5909
5909
  // converts tile coordinates to its geographical bounds
5910
5910
  _tileCoordsToBounds: function(s) {
@@ -6154,8 +6154,8 @@ function $u() {
6154
6154
  this.wmsParams[l] = this._crs.code, Cn.prototype.onAdd.call(this, s);
6155
6155
  },
6156
6156
  getTileUrl: function(s) {
6157
- var l = this._tileCoordsToNwSe(s), u = this._crs, g = F(u.project(l[0]), u.project(l[1])), p = g.min, x = g.max, T = (this._wmsVersion >= 1.3 && this._crs === Yh ? [p.y, p.x, x.y, x.x] : [p.x, p.y, x.x, x.y]).join(","), k = Cn.prototype.getTileUrl.call(this, s);
6158
- return k + C(this.wmsParams, k, this.options.uppercase) + (this.options.uppercase ? "&BBOX=" : "&bbox=") + T;
6157
+ var l = this._tileCoordsToNwSe(s), u = this._crs, g = F(u.project(l[0]), u.project(l[1])), p = g.min, x = g.max, S = (this._wmsVersion >= 1.3 && this._crs === Yh ? [p.y, p.x, x.y, x.x] : [p.x, p.y, x.x, x.y]).join(","), k = Cn.prototype.getTileUrl.call(this, s);
6158
+ return k + C(this.wmsParams, k, this.options.uppercase) + (this.options.uppercase ? "&BBOX=" : "&bbox=") + S;
6159
6159
  },
6160
6160
  // @method setParams(params: Object, noRedraw?: Boolean): this
6161
6161
  // Merges an object with the new parameters and re-requests tiles on the current screen (unless `noRedraw` was set to true).
@@ -6332,11 +6332,11 @@ function $u() {
6332
6332
  },
6333
6333
  _updatePoly: function(s, l) {
6334
6334
  if (this._drawing) {
6335
- var u, g, p, x, T = s._parts, k = T.length, R = this._ctx;
6335
+ var u, g, p, x, S = s._parts, k = S.length, R = this._ctx;
6336
6336
  if (k) {
6337
6337
  for (R.beginPath(), u = 0; u < k; u++) {
6338
- for (g = 0, p = T[u].length; g < p; g++)
6339
- x = T[u][g], R[g ? "lineTo" : "moveTo"](x.x, x.y);
6338
+ for (g = 0, p = S[u].length; g < p; g++)
6339
+ x = S[u][g], R[g ? "lineTo" : "moveTo"](x.x, x.y);
6340
6340
  l && R.closePath();
6341
6341
  }
6342
6342
  this._fillStroke(R, s);
@@ -6418,7 +6418,7 @@ function $u() {
6418
6418
  return function(s) {
6419
6419
  return document.createElement("<" + s + ' xmlns="urn:schemas-microsoft.com:vml" class="lvml">');
6420
6420
  };
6421
- }(), Qg = {
6421
+ }(), $g = {
6422
6422
  _initContainer: function() {
6423
6423
  this._container = mt("div", "leaflet-vml-container");
6424
6424
  },
@@ -6504,7 +6504,7 @@ function $u() {
6504
6504
  xn(s._path);
6505
6505
  }
6506
6506
  });
6507
- Y.vml && xr.include(Qg);
6507
+ Y.vml && xr.include($g);
6508
6508
  function sc(s) {
6509
6509
  return Y.svg || Y.vml ? new xr(s) : null;
6510
6510
  }
@@ -6537,7 +6537,7 @@ function $u() {
6537
6537
  return this.setLatLngs(this._boundsToLatLngs(s));
6538
6538
  },
6539
6539
  _boundsToLatLngs: function(s) {
6540
- return s = Q(s), [
6540
+ return s = $(s), [
6541
6541
  s.getSouthWest(),
6542
6542
  s.getNorthWest(),
6543
6543
  s.getNorthEast(),
@@ -6545,7 +6545,7 @@ function $u() {
6545
6545
  ];
6546
6546
  }
6547
6547
  });
6548
- function $g(s, l) {
6548
+ function Qg(s, l) {
6549
6549
  return new oc(s, l);
6550
6550
  }
6551
6551
  xr.create = bs, xr.pointsToPath = Le, ti.geometryToLayer = ms, ti.coordsToLatLng = ba, ti.coordsToLatLngs = ys, ti.latLngToCoords = Ca, ti.latLngsToCoords = vs, ti.getFeature = bn, ti.asFeature = xs, _t.mergeOptions({
@@ -6692,7 +6692,7 @@ function $u() {
6692
6692
  _onDragStart: function() {
6693
6693
  var s = this._map;
6694
6694
  if (s._stop(), this._map.options.maxBounds && this._map.options.maxBoundsViscosity) {
6695
- var l = Q(this._map.options.maxBounds);
6695
+ var l = $(this._map.options.maxBounds);
6696
6696
  this._offsetLimit = F(
6697
6697
  this._map.latLngToContainerPoint(l.getNorthWest()).multiplyBy(-1),
6698
6698
  this._map.latLngToContainerPoint(l.getSouthEast()).multiplyBy(-1).add(this._map.getSize())
@@ -6726,8 +6726,8 @@ function $u() {
6726
6726
  }
6727
6727
  },
6728
6728
  _onPreDragWrap: function() {
6729
- var s = this._worldWidth, l = Math.round(s / 2), u = this._initialWorldOffset, g = this._draggable._newPos.x, p = (g - l + u) % s + l - u, x = (g + l + u) % s - l - u, T = Math.abs(p + u) < Math.abs(x + u) ? p : x;
6730
- this._draggable._absPos = this._draggable._newPos.clone(), this._draggable._newPos.x = T;
6729
+ var s = this._worldWidth, l = Math.round(s / 2), u = this._initialWorldOffset, g = this._draggable._newPos.x, p = (g - l + u) % s + l - u, x = (g + l + u) % s - l - u, S = Math.abs(p + u) < Math.abs(x + u) ? p : x;
6730
+ this._draggable._absPos = this._draggable._newPos.clone(), this._draggable._newPos.x = S;
6731
6731
  },
6732
6732
  _onDragEnd: function(s) {
6733
6733
  var l = this._map, u = l.options, g = !u.inertia || s.noInertia || this._times.length < 2;
@@ -6735,11 +6735,11 @@ function $u() {
6735
6735
  l.fire("moveend");
6736
6736
  else {
6737
6737
  this._prunePositions(+/* @__PURE__ */ new Date());
6738
- var p = this._lastPos.subtract(this._positions[0]), x = (this._lastTime - this._times[0]) / 1e3, T = u.easeLinearity, k = p.multiplyBy(T / x), R = k.distanceTo([0, 0]), O = Math.min(u.inertiaMaxSpeed, R), j = k.multiplyBy(O / R), $ = O / (u.inertiaDeceleration * T), ct = j.multiplyBy(-$ / 2).round();
6738
+ var p = this._lastPos.subtract(this._positions[0]), x = (this._lastTime - this._times[0]) / 1e3, S = u.easeLinearity, k = p.multiplyBy(S / x), R = k.distanceTo([0, 0]), O = Math.min(u.inertiaMaxSpeed, R), j = k.multiplyBy(O / R), Q = O / (u.inertiaDeceleration * S), ct = j.multiplyBy(-Q / 2).round();
6739
6739
  !ct.x && !ct.y ? l.fire("moveend") : (ct = l._limitOffset(ct, l.options.maxBounds), V(function() {
6740
6740
  l.panBy(ct, {
6741
- duration: $,
6742
- easeLinearity: T,
6741
+ duration: Q,
6742
+ easeLinearity: S,
6743
6743
  noMoveStart: !0,
6744
6744
  animate: !0
6745
6745
  });
@@ -6877,8 +6877,8 @@ function $u() {
6877
6877
  _performZoom: function() {
6878
6878
  var s = this._map, l = s.getZoom(), u = this._map.options.zoomSnap || 0;
6879
6879
  s._stop();
6880
- var g = this._delta / (this._map.options.wheelPxPerZoomLevel * 4), p = 4 * Math.log(2 / (1 + Math.exp(-Math.abs(g)))) / Math.LN2, x = u ? Math.ceil(p / u) * u : p, T = s._limitZoom(l + (this._delta > 0 ? x : -x)) - l;
6881
- this._delta = 0, this._startTime = null, T && (s.options.scrollWheelZoom === "center" ? s.setZoom(l + T) : s.setZoomAround(this._lastMousePos, l + T));
6880
+ var g = this._delta / (this._map.options.wheelPxPerZoomLevel * 4), p = 4 * Math.log(2 / (1 + Math.exp(-Math.abs(g)))) / Math.LN2, x = u ? Math.ceil(p / u) * u : p, S = s._limitZoom(l + (this._delta > 0 ? x : -x)) - l;
6881
+ this._delta = 0, this._startTime = null, S && (s.options.scrollWheelZoom === "center" ? s.setZoom(l + S) : s.setZoomAround(this._lastMousePos, l + S));
6882
6882
  }
6883
6883
  });
6884
6884
  _t.addInitHook("addHandler", "scrollWheelZoom", uc);
@@ -6977,8 +6977,8 @@ function $u() {
6977
6977
  this._center = l.unproject(l.project(this._pinchStartLatLng, this._zoom).subtract(x), this._zoom);
6978
6978
  }
6979
6979
  this._moved || (l._moveStart(!0, !1), this._moved = !0), K(this._animRequest);
6980
- var T = a(l._move, l, this._center, this._zoom, { pinch: !0, round: !1 }, void 0);
6981
- this._animRequest = V(T, this, !0), Yt(s);
6980
+ var S = a(l._move, l, this._center, this._zoom, { pinch: !0, round: !1 }, void 0);
6981
+ this._animRequest = V(S, this, !0), Yt(s);
6982
6982
  }
6983
6983
  },
6984
6984
  _onTouchEnd: function() {
@@ -6989,7 +6989,7 @@ function $u() {
6989
6989
  this._zooming = !1, K(this._animRequest), Tt(document, "touchmove", this._onTouchMove, this), Tt(document, "touchend touchcancel", this._onTouchEnd, this), this._map.options.zoomAnimation ? this._map._animateZoom(this._center, this._map._limitZoom(this._zoom), !0, this._map.options.zoomSnap) : this._map._resetView(this._center, this._map._limitZoom(this._zoom));
6990
6990
  }
6991
6991
  });
6992
- _t.addInitHook("addHandler", "touchZoom", fc), _t.BoxZoom = ac, _t.DoubleClickZoom = lc, _t.Drag = hc, _t.Keyboard = cc, _t.ScrollWheelZoom = uc, _t.TapHold = dc, _t.TouchZoom = fc, e.Bounds = rt, e.Browser = Y, e.CRS = Dt, e.Canvas = nc, e.Circle = La, e.CircleMarker = ps, e.Class = gt, e.Control = Se, e.DivIcon = tc, e.DivOverlay = Be, e.DomEvent = yg, e.DomUtil = pg, e.Draggable = Si, e.Evented = G, e.FeatureGroup = Qe, e.GeoJSON = ti, e.GridLayer = yr, e.Handler = Ne, e.Icon = wn, e.ImageOverlay = Es, e.LatLng = q, e.LatLngBounds = wt, e.Layer = Pe, e.LayerGroup = En, e.LineUtil = Rg, e.Map = _t, e.Marker = _s, e.Mixin = Cg, e.Path = Pi, e.Point = N, e.PolyUtil = Tg, e.Polygon = Ln, e.Polyline = $e, e.Popup = ws, e.PosAnimation = Fh, e.Projection = Ag, e.Rectangle = oc, e.Renderer = ei, e.SVG = xr, e.SVGOverlay = $h, e.TileLayer = Cn, e.Tooltip = Ls, e.Transformation = yi, e.Util = it, e.VideoOverlay = Qh, e.bind = a, e.bounds = F, e.canvas = rc, e.circle = Gg, e.circleMarker = Bg, e.control = _r, e.divIcon = Vg, e.extend = n, e.featureGroup = Fg, e.geoJSON = Jh, e.geoJson = jg, e.gridLayer = qg, e.icon = zg, e.imageOverlay = Wg, e.latLng = nt, e.latLngBounds = Q, e.layerGroup = Og, e.map = vg, e.marker = Ng, e.point = U, e.polygon = Zg, e.polyline = Ug, e.popup = Kg, e.rectangle = $g, e.setOptions = E, e.stamp = c, e.svg = sc, e.svgOverlay = Xg, e.tileLayer = ec, e.tooltip = Yg, e.transformation = ye, e.version = i, e.videoOverlay = Hg;
6992
+ _t.addInitHook("addHandler", "touchZoom", fc), _t.BoxZoom = ac, _t.DoubleClickZoom = lc, _t.Drag = hc, _t.Keyboard = cc, _t.ScrollWheelZoom = uc, _t.TapHold = dc, _t.TouchZoom = fc, e.Bounds = rt, e.Browser = Y, e.CRS = Dt, e.Canvas = nc, e.Circle = La, e.CircleMarker = ps, e.Class = gt, e.Control = Se, e.DivIcon = tc, e.DivOverlay = Be, e.DomEvent = yg, e.DomUtil = pg, e.Draggable = Si, e.Evented = G, e.FeatureGroup = $e, e.GeoJSON = ti, e.GridLayer = yr, e.Handler = Ne, e.Icon = wn, e.ImageOverlay = Es, e.LatLng = q, e.LatLngBounds = wt, e.Layer = Pe, e.LayerGroup = En, e.LineUtil = Rg, e.Map = _t, e.Marker = _s, e.Mixin = Cg, e.Path = Pi, e.Point = N, e.PolyUtil = Tg, e.Polygon = Ln, e.Polyline = Qe, e.Popup = ws, e.PosAnimation = Fh, e.Projection = Ag, e.Rectangle = oc, e.Renderer = ei, e.SVG = xr, e.SVGOverlay = Qh, e.TileLayer = Cn, e.Tooltip = Ls, e.Transformation = yi, e.Util = it, e.VideoOverlay = $h, e.bind = a, e.bounds = F, e.canvas = rc, e.circle = Gg, e.circleMarker = Bg, e.control = _r, e.divIcon = Vg, e.extend = n, e.featureGroup = Fg, e.geoJSON = Jh, e.geoJson = jg, e.gridLayer = qg, e.icon = zg, e.imageOverlay = Wg, e.latLng = nt, e.latLngBounds = $, e.layerGroup = Og, e.map = vg, e.marker = Ng, e.point = U, e.polygon = Zg, e.polyline = Ug, e.popup = Kg, e.rectangle = Qg, e.setOptions = E, e.stamp = c, e.svg = sc, e.svgOverlay = Xg, e.tileLayer = ec, e.tooltip = Yg, e.transformation = ye, e.version = i, e.videoOverlay = Hg;
6993
6993
  var e_ = window.L;
6994
6994
  e.noConflict = function() {
6995
6995
  return window.L = e_, this;
@@ -6997,7 +6997,7 @@ function $u() {
6997
6997
  });
6998
6998
  }(Ps, Ps.exports)), Ps.exports;
6999
6999
  }
7000
- var ut = $u();
7000
+ var ut = Qu();
7001
7001
  function td(r, t, e) {
7002
7002
  e === void 0 && (e = {});
7003
7003
  var i = { type: "Feature" };
@@ -7384,7 +7384,7 @@ function To(r, t, e) {
7384
7384
  }
7385
7385
  function rd(r, t, e, i, n) {
7386
7386
  var o, a;
7387
- if (n === Qa(r, t, e, i) > 0)
7387
+ if (n === $a(r, t, e, i) > 0)
7388
7388
  for (o = t; o < e; o += i)
7389
7389
  a = bc(o, r[o], r[o + 1], a);
7390
7390
  else
@@ -7437,20 +7437,20 @@ function N_(r, t, e, i) {
7437
7437
  var n = r.prev, o = r, a = r.next;
7438
7438
  if (Mt(n, o, a) >= 0)
7439
7439
  return !1;
7440
- for (var h = n.x, c = o.x, d = a.x, f = n.y, _ = o.y, m = a.y, v = h < c ? h < d ? h : d : c < d ? c : d, y = f < _ ? f < m ? f : m : _ < m ? _ : m, E = h > c ? h > d ? h : d : c > d ? c : d, C = f > _ ? f > m ? f : m : _ > m ? _ : m, P = qa(v, y, t, e, i), w = qa(E, C, t, e, i), b = r.prevZ, S = r.nextZ; b && b.z >= P && S && S.z <= w; ) {
7441
- if (b.x >= v && b.x <= E && b.y >= y && b.y <= C && b !== n && b !== a && Gn(h, f, c, _, d, m, b.x, b.y) && Mt(b.prev, b, b.next) >= 0 || (b = b.prevZ, S.x >= v && S.x <= E && S.y >= y && S.y <= C && S !== n && S !== a && Gn(h, f, c, _, d, m, S.x, S.y) && Mt(S.prev, S, S.next) >= 0))
7440
+ for (var h = n.x, c = o.x, d = a.x, f = n.y, _ = o.y, m = a.y, v = h < c ? h < d ? h : d : c < d ? c : d, y = f < _ ? f < m ? f : m : _ < m ? _ : m, E = h > c ? h > d ? h : d : c > d ? c : d, C = f > _ ? f > m ? f : m : _ > m ? _ : m, P = qa(v, y, t, e, i), w = qa(E, C, t, e, i), b = r.prevZ, T = r.nextZ; b && b.z >= P && T && T.z <= w; ) {
7441
+ if (b.x >= v && b.x <= E && b.y >= y && b.y <= C && b !== n && b !== a && Gn(h, f, c, _, d, m, b.x, b.y) && Mt(b.prev, b, b.next) >= 0 || (b = b.prevZ, T.x >= v && T.x <= E && T.y >= y && T.y <= C && T !== n && T !== a && Gn(h, f, c, _, d, m, T.x, T.y) && Mt(T.prev, T, T.next) >= 0))
7442
7442
  return !1;
7443
- S = S.nextZ;
7443
+ T = T.nextZ;
7444
7444
  }
7445
7445
  for (; b && b.z >= P; ) {
7446
7446
  if (b.x >= v && b.x <= E && b.y >= y && b.y <= C && b !== n && b !== a && Gn(h, f, c, _, d, m, b.x, b.y) && Mt(b.prev, b, b.next) >= 0)
7447
7447
  return !1;
7448
7448
  b = b.prevZ;
7449
7449
  }
7450
- for (; S && S.z <= w; ) {
7451
- if (S.x >= v && S.x <= E && S.y >= y && S.y <= C && S !== n && S !== a && Gn(h, f, c, _, d, m, S.x, S.y) && Mt(S.prev, S, S.next) >= 0)
7450
+ for (; T && T.z <= w; ) {
7451
+ if (T.x >= v && T.x <= E && T.y >= y && T.y <= C && T !== n && T !== a && Gn(h, f, c, _, d, m, T.x, T.y) && Mt(T.prev, T, T.next) >= 0)
7452
7452
  return !1;
7453
- S = S.nextZ;
7453
+ T = T.nextZ;
7454
7454
  }
7455
7455
  return !0;
7456
7456
  }
@@ -7606,11 +7606,11 @@ function Ja(r, t, e) {
7606
7606
  this.i = r, this.x = t, this.y = e, this.prev = null, this.next = null, this.z = 0, this.prevZ = null, this.nextZ = null, this.steiner = !1;
7607
7607
  }
7608
7608
  To.deviation = function(r, t, e, i) {
7609
- var n = t && t.length, o = n ? t[0] * e : r.length, a = Math.abs(Qa(r, 0, o, e));
7609
+ var n = t && t.length, o = n ? t[0] * e : r.length, a = Math.abs($a(r, 0, o, e));
7610
7610
  if (n)
7611
7611
  for (var h = 0, c = t.length; h < c; h++) {
7612
7612
  var d = t[h] * e, f = h < c - 1 ? t[h + 1] * e : r.length;
7613
- a -= Math.abs(Qa(r, d, f, e));
7613
+ a -= Math.abs($a(r, d, f, e));
7614
7614
  }
7615
7615
  var _ = 0;
7616
7616
  for (h = 0; h < i.length; h += 3) {
@@ -7621,7 +7621,7 @@ To.deviation = function(r, t, e, i) {
7621
7621
  }
7622
7622
  return a === 0 && _ === 0 ? 0 : Math.abs((_ - a) / a);
7623
7623
  };
7624
- function Qa(r, t, e, i) {
7624
+ function $a(r, t, e, i) {
7625
7625
  for (var n = 0, o = t, a = e - i; o < e; o += i)
7626
7626
  n += (r[a] - r[o]) * (r[o + 1] + r[a + 1]), a = o;
7627
7627
  return n;
@@ -7635,7 +7635,7 @@ To.flatten = function(r) {
7635
7635
  }
7636
7636
  return e;
7637
7637
  };
7638
- var Q_ = { exports: {} };
7638
+ var $_ = { exports: {} };
7639
7639
  const Cc = [
7640
7640
  [
7641
7641
  "requestFullscreen",
@@ -7754,9 +7754,9 @@ Object.defineProperties(fe, {
7754
7754
  }
7755
7755
  });
7756
7756
  ci || (fe = { isEnabled: !1 });
7757
- const $_ = fe, tp = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7757
+ const Q_ = fe, tp = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7758
7758
  __proto__: null,
7759
- default: $_
7759
+ default: Q_
7760
7760
  }, Symbol.toStringTag, { value: "Module" })), ep = /* @__PURE__ */ Ku(tp);
7761
7761
  /*!
7762
7762
  * Based on package 'screenfull'
@@ -7892,7 +7892,7 @@ const $_ = fe, tp = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineP
7892
7892
  * leaflet.fullscreen
7893
7893
  */
7894
7894
  (function(t, e) {
7895
- r.exports ? r.exports = e($u(), ep) : e(t.L, t.screenfull);
7895
+ r.exports ? r.exports = e(Qu(), ep) : e(t.L, t.screenfull);
7896
7896
  })(typeof self < "u" ? self : hi, function(t, e) {
7897
7897
  return t.Control.FullScreen = t.Control.extend({
7898
7898
  options: {
@@ -7935,7 +7935,7 @@ const $_ = fe, tp = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineP
7935
7935
  return new t.Control.FullScreen(i);
7936
7936
  }, { leaflet: t, screenfull: e };
7937
7937
  });
7938
- })(Q_);
7938
+ })($_);
7939
7939
  const ip = wo({
7940
7940
  name: "CoordinatesVerifyPolygon",
7941
7941
  props: {
@@ -7983,7 +7983,7 @@ const Sl = (r, t) => {
7983
7983
  function rp(r, t, e, i, n, o) {
7984
7984
  return Lo(), bo("div", np, null, 512);
7985
7985
  }
7986
- const QL = /* @__PURE__ */ Sl(ip, [["render", rp]]), sp = "data:image/png;base64,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", op = "data:image/png;base64,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", ap = "data:image/png;base64,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";
7986
+ const $L = /* @__PURE__ */ Sl(ip, [["render", rp]]), sp = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAACXBIWXMAAAsTAAALEwEAmpwYAAANHElEQVR4nOWbe3BUVZ7HP/fefiSdTtKEJsggBHnYBqVgwBKNyjiC4ojLw5Wt0t2ZcX2sU1SN1G7t1DijjlU66oiOO85ooazM1uBjRpQRJhAFh4criEEIUcRwI+EVyfOa3KQ7nX7de/eP7gSSe7tzO+ngH/utoiqce87v/M73/n6/8zu/c1swDIP/z3CMpnC/L5APLAMWAfOBywAx9VhI/RsMA6gH9gE7gEpFlcOjpaMwGhbg9wUCwL8BK4FxQByIleh+90RtcrRYH+Mo0oscDlwOwBEjKvaIIboFVWiWztIhtZMg0SeuHXgLeFlR5aO51jWnBPh9ge8AvwDuIfkmI5O0svby2GzfJG2Kb7w2wSEiZbQ6HYOg2GmccjQIXzhrOen46vzHfwQeU1T561zpnDMC/L7A/cCjgA/Qro5dd3pu9FpK9LGzs1IIgQQaAA4k2qQmvcZ1gMOuajFlFRHgIUWVX8iF3iMmwO8LFAJrgbuArvL4nCNLe+/wOw1XuYG1k2epImAQFkLa9vxK/ajzsCPVuA24U1Hl4Iikj4QAvy8wA9gEzBirl554MPiz1gja98XUsoUcLP98aOhExO74tvx3pXpHnQicAW5SVLl+uDKHTYDfF5gNfAi458TmNS/uXTlRwHC5cKAzOltrn3voGFS7d+t78naIQC9wjaLKnw1L5nAI8PsCU4HDAPOjCw7eFLntRrtjDQw0dJxI/TQJCMTREAEJCcMmgfvdu42dee8JJOPC5Yoqn8huJcMgwO8LuIETgK8ieuPB70duWWDH0Asn5TN2TjET5ozholnFuKe4yC9xIQgCkWCc6OkYHXUhzhxqo+tYGOVItx31qXbvMz7I2ywArUCZosrRbNYzHAI+AK5bFLm5dn500dVJNdKjdJ6Pqx6+lOkrJmQ1T/P+Tg4+U0/DlpaM/QQkap3VVHo2AuxUVHlRNvNkRYDfF1gF/LYsMf3MHT33XJo/RCJZ8UQ5Vz1yaTb6mFC/8Sy7HzxCb6v1i026lIuP8jazz/0hwCpFldfalW+bAL8vUEIyK/v60a41/ghxjxvngD4iAkEilE4rZvk7VzNuTrFdPTIiFkyw/YeHOLblLA4kk8UlSCDi4vmiR4gIEYASRZU77cgWh+7Sjz8A4WsiCzUd3ZOPy9ShlziLls3i3i9vsrX4E5WtHF1/esh+rkIH/7B5PteuLkcCU4h04kTEYGF4+fm62oItAvy+wGTgTq9RpC6MLr5EQLTY6gw8Mz3M31yO6BpabO2LDVQu/YQP7qtlx49rbSlb8btyLr+3zGQByV3D4LuJucyMzwb4Z78vMMmOTLsW8BAQuy28Mm2EFZ0i9+9daEvYwUcb2P3TI/0U1m1o5K8/2Gtr7MJX53DRlb60z2/pXd7350N25A1JgN8XcAE/8hre0PTEZdPSiVm6eT55Y8xuMRjv/+QQu3/92YAs0UCj8f1ONl67Dy2mDylj2XvXILmtVS8wPExPzAS42+8LOC07DdB8aNwGSDdEbo6bvQ9A4PL7LmbKreOHFLR9SQ1fvHIaJ5JJhoFO08ff8D+BHajHQxnl5Ptd/ODNKy2fGQgs7l0G4AGWDKWTHQKWArFAfHah1fIll8iC567IKCDWneD1ebs4WnUGZ8at0yB0Ksbrs/bQvD9zEJ9++wTGBAotn5XoY/DpYyBZjMkIOwRUlGllMYfhKrCygInfK8FdnN7Sws1RXrtiJ0pNEBHBRpprkIhobKzYx5ldrRl7Tr7Rn0YCzEi6wQK/L+DJJMMOAaUXJ6Y5nEiWp7uJ149NO7C1RuUv8z8i2BixMc1AGOhsWrSf+r+kr31MXZre7crjswCmAnMyzWOHgNDExGTJKt0VMLj45lLLQac3t/HGvF10NWb25/QwEAyRqjtr+PiROsseZbeMx+1zWtpUygUgWYdMCzsEuHzGGGHwJAk0nPlOLrrCnPAcfaWRyhUHEBBHWBNI7u8Hnqxn5301lj3GzfUimoIq59cUJ2eawQ4B4XyjwBS5JES8l3iQCgaKOPLyaap+coAYiZwWRL5c38TeX5ktoXhqIWDeOp24+/60DhQp2CEg5jJcZooRKfCbI3rjzlZcOBBzXA1KkKDtow5Te1FpHpqFE0hGv8oZg6Cde4Fe0px4BdHc/L0/zKZoeiExNcbJba0EG3ttTJEekluk/IeTkPIl5q4252GCaJ2dOM8d1DJuO3YIKIkT093kDWgUMYj0aKbOBRe5ue7pcgC2/uOBERPg9DpY9N9z0j7vCWo4MDDSW1zGyoodAvLCYk/cqxUNyHMNBEKnw0l+08wdD5kJ6kP+ODeSKznQMKCnyXqrNDSDeI+Gs8DCC4FwYxg9lWEMmJt4358Z7xDsEKCflc5GS7UJBYMf9LbFaP9CZdwsnw0x5zDvP6dR8eRMJGcyBBmGwfG/NrPtnz4dwmDNaP6kk8GDBASCQn+1/Fim8XaCYHuH1IRuOgAnc7qze2zVHQag/F8mIbnE/ttBQRSYccd3cHqs33I6KEe6CTVFTAYYJ4HqaAXoAD7NJMMOATXHHF86tdSebFKiVrWn7Xno/SZuaouHEpZBNRNOVrVa6hQnwQlHA8D/KqrclkmGHQL+3il2aEGxs9FqXz9Z1YqhZ2e3Vv0NPRkLssHJLS2YA5CAWxD5zHkQkrdHGWGHgEogsdf9gWEVaXtaohxcc9yGmNyivbaLpv3mvEBA53Pn532Z4Kah5AxJQKq4+P4RV22JiB62ekn7H60jbrElalHr4oYeN7cbumHZX4vqlhaz/ceH0+pc7foIoMpOYdRuSWydgeHa49qtamhIg4bpCdh6e7VpkJXiAuA0Z9ZILhHDghitV0sGzPNw8DcNtH+uDpKbdNAGsZF2qQng+aEWBdmVxfdLSPOe7nop2kKb1zMoMRIwmHFXGbe+8d3+to5jIQ78ph4tlAyhIjC+YgxzV09DsDhfNvythboNZ+jza1EUuOyeSUy95dyx97Pf1/P31fVIDLQ4DQ0Dkbe962iQGk4pqnxJrglYAfzphuiC2JWRJWPzBsWD5AIFbnzqCmb9Yqotmdmi+Z12/rxyP4JF3hciStDRyPqCdQA/UlT5NTsybd8LKKr8LlDzseuTggKL80XyFt+g6peHqX5q2LfVaXGqqoXXVn6Y9sMiL4Vsy9sK0Gp38ZDdxQjAizEh1lPj2hlL18GNg08erqNyxQFaqrNPkgaj+1SYvT//kneXVOPEaUp5kxDoFptoSfr+6mzkD+dytBqY/e/dj0sFRt6QqfTMuydx1S8vxTfDm9U80a44Nc83UP24PGRfHZG1hU/SKXbWK6ocyGae4RAwH9g+NXFZ9K6eu0vtGtElS8Yz/fYJlC0uxTsx37JPpDPG2Q87OFHZzFdvNxELJiz7Dcanrn1sz98CcLWiyubtKAOG+4HEJmDxvaFV7aXalCnZZPCCKFA83UNRmQePP1m1iQYTdJ/uoftED/GeoS9G+mAAMSHOs0UPA7yjqPLKLFRJ6jNMArxAl4QUXN39sDPf8Hqyy+KTIRPOP033SbCvj4HOOu/vaJdaNKBYUeWerNQg+yAIgKLKIeBfNbTidzxvugSLmlxmnFukMKAtm5chcMC9l3apBeCe4SwehkkAgKLKG4DdZxzHHfUOGXDkuAqYHgYQEmLsynsPYFdKl2Fh2ASksBxIbCrYQI+okL7+kzv0ZZRvF6xFQ0sAt49E3ogIUFS5G1ipofFH70uA+ZyfWxgYSGz0bOCs9DXASkWVu0YicaQWgKLKm4H1XUIXW/O2ESGGY+RiTZAQiQIHnbuQnV8ArE/NPSLkRFNFle8Dvvrc/TG6o5MuRvT1qiW66MEhJtjh2QbwVWrOESOXr2ohwO8LXqBDNNfpRgaBBDFe8j4zYK5cIGcEKKrcCCxPkOBPhc+gC9nfCGfCW4Wv0i10A6xIzZUT5NRZFVXeAjwOsL5gLSqxEV2RORCJEmNT/pu0i60AT+TC789HzqOVosqPAZUtUjOH83cQJmH729/B6CTMGVcdda7DAFsVVf5VLnWFUfrJDIDfF6gHZtwQuZWK6PWWV9hD4ZDjEO8VvAXJoDeyT07TIPf71TlUAME9eVUcdx7FyIIAAWiTWvoWH0zJGhWMGgGKKivA9QAbPa9zQjpOmGjGbwYkRGLEaRXbWOftr2len5I1KhhNCyD1I4alAH/2rsWQetEzJMxR4kiCwbrC5/qalg33hxB2MaoEACiqXAncD/Bf3qdQxG/QLE6PAgYtQhdPFz3S1/SAosp/G239Rp0AAEWVXwV+DvBK4bOEhZDJFRLEeKOw3+wfUlR53YXQ7YIQAKCo8hpgDcALRb8mLJw7vifQeK7oCeJCDGCNosrPWEvJPUZtG0wHvy/wAvAgwH90P4aAyMuFz9GTvM9/UVHln15IfS44AQB+X+AlYJWQqvIbyZiwVlHlVRdal2+FAAC/L/Ay8EDqv+sUVX4gU//RwrdGAIDfF3gWQFHln31bOvwfX7MkK809f/0AAAAASUVORK5CYII=", op = "data:image/png;base64,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", ap = "data:image/png;base64,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";
7987
7987
  (function(r, t, e) {
7988
7988
  function i(n, o) {
7989
7989
  for (; (n = n.parentElement) && !n.classList.contains(o); )
@@ -9035,10 +9035,10 @@ function cd(r, t) {
9035
9035
  return null;
9036
9036
  }
9037
9037
  const ud = (() => typeof globalThis < "u" ? globalThis : typeof self < "u" ? self : typeof window < "u" ? window : global)(), dd = (r) => !Ir(r) && r !== ud;
9038
- function $a() {
9038
+ function Qa() {
9039
9039
  const { caseless: r } = dd(this) && this || {}, t = {}, e = (i, n) => {
9040
9040
  const o = r && cd(t, n) || n;
9041
- Xs(t[o]) && Xs(i) ? t[o] = $a(t[o], i) : Xs(i) ? t[o] = $a({}, i) : er(i) ? t[o] = i.slice() : t[o] = i;
9041
+ Xs(t[o]) && Xs(i) ? t[o] = Qa(t[o], i) : Xs(i) ? t[o] = Qa({}, i) : er(i) ? t[o] = i.slice() : t[o] = i;
9042
9042
  };
9043
9043
  for (let i = 0, n = arguments.length; i < n; i++)
9044
9044
  arguments[i] && Xr(arguments[i], e);
@@ -9090,12 +9090,12 @@ const Zp = (r, t, e, { allOwnKeys: i } = {}) => (Xr(t, (n, o) => {
9090
9090
  for (; (e = r.exec(t)) !== null; )
9091
9091
  i.push(e);
9092
9092
  return i;
9093
- }, Jp = Ye("HTMLFormElement"), Qp = (r) => r.toLowerCase().replace(
9093
+ }, Jp = Ye("HTMLFormElement"), $p = (r) => r.toLowerCase().replace(
9094
9094
  /[-_\s]([a-z\d])(\w*)/g,
9095
9095
  function(e, i, n) {
9096
9096
  return i.toUpperCase() + n;
9097
9097
  }
9098
- ), Pc = (({ hasOwnProperty: r }) => (t, e) => r.call(t, e))(Object.prototype), $p = Ye("RegExp"), fd = (r, t) => {
9098
+ ), Pc = (({ hasOwnProperty: r }) => (t, e) => r.call(t, e))(Object.prototype), Qp = Ye("RegExp"), fd = (r, t) => {
9099
9099
  const e = Object.getOwnPropertyDescriptors(r), i = {};
9100
9100
  Xr(e, (n, o) => {
9101
9101
  let a;
@@ -9170,14 +9170,14 @@ const om = (r) => {
9170
9170
  isDate: Dp,
9171
9171
  isFile: Op,
9172
9172
  isBlob: Fp,
9173
- isRegExp: $p,
9173
+ isRegExp: Qp,
9174
9174
  isFunction: we,
9175
9175
  isStream: Np,
9176
9176
  isURLSearchParams: Gp,
9177
9177
  isTypedArray: Yp,
9178
9178
  isFileList: zp,
9179
9179
  forEach: Xr,
9180
- merge: $a,
9180
+ merge: Qa,
9181
9181
  extend: Zp,
9182
9182
  trim: Up,
9183
9183
  stripBOM: jp,
@@ -9196,7 +9196,7 @@ const om = (r) => {
9196
9196
  reduceDescriptors: fd,
9197
9197
  freezeMethods: tm,
9198
9198
  toObjectSet: em,
9199
- toCamelCase: Qp,
9199
+ toCamelCase: $p,
9200
9200
  noop: im,
9201
9201
  toFiniteNumber: nm,
9202
9202
  findKey: cd,
@@ -9305,10 +9305,10 @@ function Ro(r, t, e) {
9305
9305
  if (D.endsWith(E, "{}"))
9306
9306
  E = i ? E : E.slice(0, -2), y = JSON.stringify(y);
9307
9307
  else if (D.isArray(y) && cm(y) || (D.isFileList(y) || D.endsWith(E, "[]")) && (P = D.toArray(y)))
9308
- return E = md(E), P.forEach(function(b, S) {
9308
+ return E = md(E), P.forEach(function(b, T) {
9309
9309
  !(D.isUndefined(b) || b === null) && t.append(
9310
9310
  // eslint-disable-next-line no-nested-ternary
9311
- a === !0 ? Mc([E], S, o) : a === null ? E : E + "[]",
9311
+ a === !0 ? Mc([E], T, o) : a === null ? E : E + "[]",
9312
9312
  d(b)
9313
9313
  );
9314
9314
  }), !1;
@@ -10131,7 +10131,7 @@ const il = {
10131
10131
  assertOptions: Bm,
10132
10132
  validators: Al
10133
10133
  }, ki = il.validators;
10134
- class Qs {
10134
+ class $s {
10135
10135
  constructor(t) {
10136
10136
  this.defaults = t, this.interceptors = {
10137
10137
  request: new Ac(),
@@ -10212,7 +10212,7 @@ class Qs {
10212
10212
  }
10213
10213
  }
10214
10214
  D.forEach(["delete", "get", "head", "options"], function(t) {
10215
- Qs.prototype[t] = function(e, i) {
10215
+ $s.prototype[t] = function(e, i) {
10216
10216
  return this.request(Kn(i || {}, {
10217
10217
  method: t,
10218
10218
  url: e,
@@ -10233,9 +10233,9 @@ D.forEach(["post", "put", "patch"], function(t) {
10233
10233
  }));
10234
10234
  };
10235
10235
  }
10236
- Qs.prototype[t] = e(), Qs.prototype[t + "Form"] = e(!0);
10236
+ $s.prototype[t] = e(), $s.prototype[t + "Form"] = e(!0);
10237
10237
  });
10238
- const Ys = Qs;
10238
+ const Ys = $s;
10239
10239
  class Il {
10240
10240
  constructor(t) {
10241
10241
  if (typeof t != "function")
@@ -10511,8 +10511,8 @@ const Wm = wo({
10511
10511
  }
10512
10512
  ).addTo(t);
10513
10513
  this.markerRender = C, this.getCoodMarker && C.on("dragend", (P) => {
10514
- const w = P.target.getLatLng(), b = w.lat, S = w.lng;
10515
- this.getCoodMarker && this.getCoodMarker(b, S);
10514
+ const w = P.target.getLatLng(), b = w.lat, T = w.lng;
10515
+ this.getCoodMarker && this.getCoodMarker(b, T);
10516
10516
  });
10517
10517
  }
10518
10518
  const e = ut.featureGroup();
@@ -10554,7 +10554,7 @@ const Wm = wo({
10554
10554
  edit: n
10555
10555
  });
10556
10556
  t.addControl(o), t.on("draw:created", (C) => {
10557
- var b, S, M, A, I, z, Z, X, V, K, it, gt, H, W, G;
10557
+ var b, T, M, A, I, z, Z, X, V, K, it, gt, H, W, G;
10558
10558
  const P = C.layer;
10559
10559
  i.addLayer(P);
10560
10560
  let w = P.toGeoJSON();
@@ -10568,7 +10568,7 @@ const Wm = wo({
10568
10568
  ...w.properties,
10569
10569
  pointType: "multipoint",
10570
10570
  style: {
10571
- color: ((M = (S = (b = this.configurationMap) == null ? void 0 : b.createFigures) == null ? void 0 : S.multipoint) == null ? void 0 : M.color) || "green",
10571
+ color: ((M = (T = (b = this.configurationMap) == null ? void 0 : b.createFigures) == null ? void 0 : T.multipoint) == null ? void 0 : M.color) || "green",
10572
10572
  fillColor: ((z = (I = (A = this.configurationMap) == null ? void 0 : A.createFigures) == null ? void 0 : I.multipoint) == null ? void 0 : z.fillColor) || "green",
10573
10573
  fillOpacity: ((V = (X = (Z = this.configurationMap) == null ? void 0 : Z.createFigures) == null ? void 0 : X.multipoint) == null ? void 0 : V.fillOpacity) || 0.8,
10574
10574
  radius: ((gt = (it = (K = this.configurationMap) == null ? void 0 : K.createFigures) == null ? void 0 : it.multipoint) == null ? void 0 : gt.radius) || 6,
@@ -10616,15 +10616,21 @@ const Wm = wo({
10616
10616
  if (o && o.length) {
10617
10617
  o.forEach((w) => {
10618
10618
  w.type === "FeatureCollection" ? w.features.forEach((b) => {
10619
- (b.geometry.type === "Polygon" || b.geometry.type === "MultiPolygon" || b.geometry.type === "LineString" || b.geometry.type === "MultiLineString" || b.geometry.type === "Point") && ut.geoJson(b, {
10620
- pointToLayer: this.getPointToLayer.bind(this),
10621
- onEachFeature: function(S, M) {
10622
- i.addLayer(M);
10623
- }
10624
- });
10619
+ if (b.geometry.type === "Polygon" || b.geometry.type === "MultiPolygon" || b.geometry.type === "LineString" || b.geometry.type === "MultiLineString" || b.geometry.type === "Point") {
10620
+ const T = this;
10621
+ ut.geoJson(b, {
10622
+ pointToLayer: this.getPointToLayer.bind(this),
10623
+ onEachFeature: function(M, A) {
10624
+ if (i.addLayer(A), M.geometry.type === "Point") {
10625
+ var I = T.getPopupContent(M);
10626
+ A.bindPopup(I);
10627
+ }
10628
+ }
10629
+ });
10630
+ }
10625
10631
  }) : w.type === "Feature" && (w.geometry.type === "Polygon" || w.geometry.type === "MultiPolygon" || w.geometry.type === "LineString" || w.geometry.type === "MultiLineString" || w.geometry.type === "Point" || w.geometry.type === "MultiPoint") && ut.geoJson(w, {
10626
- onEachFeature: function(b, S) {
10627
- i.addLayer(S);
10632
+ onEachFeature: function(b, T) {
10633
+ i.addLayer(T);
10628
10634
  }
10629
10635
  });
10630
10636
  });
@@ -10655,7 +10661,7 @@ const Wm = wo({
10655
10661
  edit: n
10656
10662
  });
10657
10663
  t.addControl(a), t.on("draw:created", (P) => {
10658
- var S, M, A, I, z, Z, X, V, K, it, gt, H, W, G, N;
10664
+ var T, M, A, I, z, Z, X, V, K, it, gt, H, W, G, N;
10659
10665
  const w = P.layer;
10660
10666
  i.addLayer(w);
10661
10667
  let b = w.toGeoJSON();
@@ -10669,7 +10675,7 @@ const Wm = wo({
10669
10675
  ...b.properties,
10670
10676
  pointType: "multipoint",
10671
10677
  style: {
10672
- color: ((A = (M = (S = this.configurationMap) == null ? void 0 : S.createFigures) == null ? void 0 : M.multipoint) == null ? void 0 : A.color) || "green",
10678
+ color: ((A = (M = (T = this.configurationMap) == null ? void 0 : T.createFigures) == null ? void 0 : M.multipoint) == null ? void 0 : A.color) || "green",
10673
10679
  fillColor: ((Z = (z = (I = this.configurationMap) == null ? void 0 : I.createFigures) == null ? void 0 : z.multipoint) == null ? void 0 : Z.fillColor) || "green",
10674
10680
  fillOpacity: ((K = (V = (X = this.configurationMap) == null ? void 0 : X.createFigures) == null ? void 0 : V.multipoint) == null ? void 0 : K.fillOpacity) || 0.8,
10675
10681
  radius: ((H = (gt = (it = this.configurationMap) == null ? void 0 : it.createFigures) == null ? void 0 : gt.multipoint) == null ? void 0 : H.radius) || 6,
@@ -10679,8 +10685,8 @@ const Wm = wo({
10679
10685
  }), this.getGeoJSON && this.getGeoJSON(b);
10680
10686
  }), t.on("draw:edited", (P) => {
10681
10687
  P.layers.eachLayer((b) => {
10682
- const S = b.toGeoJSON();
10683
- this.getGeoJSON && this.getGeoJSON(S);
10688
+ const T = b.toGeoJSON();
10689
+ this.getGeoJSON && this.getGeoJSON(T);
10684
10690
  });
10685
10691
  });
10686
10692
  },
@@ -10731,6 +10737,20 @@ const Wm = wo({
10731
10737
  const e = ut.latLng(r, t);
10732
10738
  this.mapRender.panTo(e, { animate: !0, duration: 0.5 });
10733
10739
  }
10740
+ },
10741
+ getPopupContent(r) {
10742
+ const t = r.properties || {}, e = t.descripcion || "", i = t.fechaHoraLlegada || "";
10743
+ let n = "";
10744
+ if (i) {
10745
+ const a = new Date(i), h = (c) => c.toString().padStart(2, "0");
10746
+ n = `${h(a.getDate())}-${h(
10747
+ a.getMonth() + 1
10748
+ )}-${a.getFullYear()} ${h(a.getHours())}:${h(
10749
+ a.getMinutes()
10750
+ )}:${h(a.getSeconds())}`;
10751
+ }
10752
+ let o = "<div>";
10753
+ return o += `<b>Descripción:</b> ${e}<br>`, n && (o += `<b>Fecha Hora Llegada:</b> ${n}<br>`), o += "</div>", o;
10734
10754
  }
10735
10755
  },
10736
10756
  watch: {
@@ -10757,7 +10777,7 @@ function Xm(r, t, e, i, n, o) {
10757
10777
  }, null, 8, Hm)
10758
10778
  ], 4);
10759
10779
  }
10760
- const $L = /* @__PURE__ */ Sl(Wm, [["render", Xm]]), Km = ["id"], tb = /* @__PURE__ */ wo({
10780
+ const QL = /* @__PURE__ */ Sl(Wm, [["render", Xm]]), Km = ["id"], tb = /* @__PURE__ */ wo({
10761
10781
  __name: "MapSearchAddress",
10762
10782
  props: {
10763
10783
  configurationMap: { default: () => ({
@@ -10813,7 +10833,7 @@ const $L = /* @__PURE__ */ Sl(Wm, [["render", Xm]]), Km = ["id"], tb = /* @__PUR
10813
10833
  draggable: i.configurationMap.dragMarker
10814
10834
  }).addTo(E);
10815
10835
  h.value = w, w.on("dragend", (b) => {
10816
- const S = b.target.getLatLng(), M = S.lat, A = S.lng;
10836
+ const T = b.target.getLatLng(), M = T.lat, A = T.lng;
10817
10837
  m({
10818
10838
  lat: M,
10819
10839
  lng: A
@@ -10830,7 +10850,7 @@ const $L = /* @__PURE__ */ Sl(Wm, [["render", Xm]]), Km = ["id"], tb = /* @__PUR
10830
10850
  draggable: i.configurationMap.dragMarker
10831
10851
  }).addTo(E);
10832
10852
  h.value = w, w.on("dragend", (b) => {
10833
- const S = b.target.getLatLng(), M = S.lat, A = S.lng;
10853
+ const T = b.target.getLatLng(), M = T.lat, A = T.lng;
10834
10854
  m({
10835
10855
  lat: M,
10836
10856
  lng: A
@@ -11000,7 +11020,7 @@ function pi(r, t) {
11000
11020
  return !1;
11001
11021
  return !0;
11002
11022
  }
11003
- function Qm(r, t, e) {
11023
+ function $m(r, t, e) {
11004
11024
  const i = t || Gi;
11005
11025
  return r.every(function(n, o) {
11006
11026
  if (o === 0)
@@ -11017,7 +11037,7 @@ function Do() {
11017
11037
  }
11018
11038
  function Vn() {
11019
11039
  }
11020
- function $m(r) {
11040
+ function Qm(r) {
11021
11041
  let t = !1, e, i, n;
11022
11042
  return function() {
11023
11043
  const o = Array.prototype.slice.call(arguments);
@@ -11167,7 +11187,7 @@ function ht(r, t, e, i, n) {
11167
11187
  };
11168
11188
  return r.addEventListener(t, e), o;
11169
11189
  }
11170
- function $s(r, t, e, i) {
11190
+ function Qs(r, t, e, i) {
11171
11191
  return ht(r, t, e, i, !0);
11172
11192
  }
11173
11193
  function Lt(r) {
@@ -11228,9 +11248,9 @@ class Fo extends Oo {
11228
11248
  const n = t.length;
11229
11249
  i = new Array(n);
11230
11250
  for (let o = 0; o < n; ++o)
11231
- i[o] = $s(this, t[o], e);
11251
+ i[o] = Qs(this, t[o], e);
11232
11252
  } else
11233
- i = $s(
11253
+ i = Qs(
11234
11254
  this,
11235
11255
  /** @type {string} */
11236
11256
  t,
@@ -12375,10 +12395,10 @@ function Vy(r, t, e, i, n, o, a) {
12375
12395
  }
12376
12396
  return a && a.length != h && (a.length = h), a;
12377
12397
  }
12378
- const Qc = Vt();
12398
+ const $c = Vt();
12379
12399
  class qy extends Ae {
12380
12400
  constructor() {
12381
- super(), this.extent_ = pe(), this.extentRevision_ = -1, this.simplifiedGeometryMaxMinSquaredTolerance = 0, this.simplifiedGeometryRevision = 0, this.simplifyTransformedInternal = $m(function(t, e, i) {
12401
+ super(), this.extent_ = pe(), this.extentRevision_ = -1, this.simplifiedGeometryMaxMinSquaredTolerance = 0, this.simplifiedGeometryRevision = 0, this.simplifyTransformedInternal = Qm(function(t, e, i) {
12382
12402
  if (!i)
12383
12403
  return this.getSimplifiedGeometry(e);
12384
12404
  const n = this.clone();
@@ -12576,7 +12596,7 @@ class qy extends Ae {
12576
12596
  const i = Gt(t), n = i.getUnits() == "tile-pixels" ? function(o, a, h) {
12577
12597
  const c = i.getExtent(), d = i.getWorldExtent(), f = Xe(d) / Xe(c);
12578
12598
  return Ke(
12579
- Qc,
12599
+ $c,
12580
12600
  d[0],
12581
12601
  d[3],
12582
12602
  f,
@@ -12589,7 +12609,7 @@ class qy extends Ae {
12589
12609
  0,
12590
12610
  o.length,
12591
12611
  h,
12592
- Qc,
12612
+ $c,
12593
12613
  a
12594
12614
  ), io(i, e)(
12595
12615
  o,
@@ -12600,8 +12620,8 @@ class qy extends Ae {
12600
12620
  return this.applyTransform(n), this;
12601
12621
  }
12602
12622
  }
12603
- const Qd = qy;
12604
- class Jy extends Qd {
12623
+ const $d = qy;
12624
+ class Jy extends $d {
12605
12625
  constructor() {
12606
12626
  super(), this.layout = "XY", this.stride = 2, this.flatCoordinates = null;
12607
12627
  }
@@ -12688,7 +12708,7 @@ class Jy extends Qd {
12688
12708
  * @param {Array<number>} flatCoordinates Flat coordinates.
12689
12709
  */
12690
12710
  setFlatCoordinates(t, e) {
12691
- this.stride = $c(t), this.layout = t, this.flatCoordinates = e;
12711
+ this.stride = Qc(t), this.layout = t, this.flatCoordinates = e;
12692
12712
  }
12693
12713
  /**
12694
12714
  * @abstract
@@ -12707,7 +12727,7 @@ class Jy extends Qd {
12707
12727
  setLayout(t, e, i) {
12708
12728
  let n;
12709
12729
  if (t)
12710
- n = $c(t);
12730
+ n = Qc(t);
12711
12731
  else {
12712
12732
  for (let o = 0; o < i; ++o) {
12713
12733
  if (e.length === 0) {
@@ -12717,7 +12737,7 @@ class Jy extends Qd {
12717
12737
  e = /** @type {Array} */
12718
12738
  e[0];
12719
12739
  }
12720
- n = e.length, t = Qy(n);
12740
+ n = e.length, t = $y(n);
12721
12741
  }
12722
12742
  this.layout = t, this.stride = n;
12723
12743
  }
@@ -12804,17 +12824,17 @@ class Jy extends Qd {
12804
12824
  }
12805
12825
  }
12806
12826
  }
12807
- function Qy(r) {
12827
+ function $y(r) {
12808
12828
  let t;
12809
12829
  return r == 2 ? t = "XY" : r == 3 ? t = "XYZ" : r == 4 && (t = "XYZM"), /** @type {import("./Geometry.js").GeometryLayout} */
12810
12830
  t;
12811
12831
  }
12812
- function $c(r) {
12832
+ function Qc(r) {
12813
12833
  let t;
12814
12834
  return r == "XY" ? t = 2 : r == "XYZ" || r == "XYM" ? t = 3 : r == "XYZM" && (t = 4), /** @type {number} */
12815
12835
  t;
12816
12836
  }
12817
- function $y(r, t, e) {
12837
+ function Qy(r, t, e) {
12818
12838
  const i = r.getFlatCoordinates();
12819
12839
  if (!i)
12820
12840
  return null;
@@ -13026,7 +13046,7 @@ function Jl(r, t, e, i, n, o, a) {
13026
13046
  let v = 0;
13027
13047
  const y = r[m], E = r[m + 1], C = r[_], P = r[_ + 1];
13028
13048
  for (let w = m + i; w < _; w += i) {
13029
- const b = r[w], S = r[w + 1], M = Ey(b, S, y, E, C, P);
13049
+ const b = r[w], T = r[w + 1], M = Ey(b, T, y, E, C, P);
13030
13050
  M > v && (f = w, v = M);
13031
13051
  }
13032
13052
  v > n && (c[(f - t) / i] = 1, m + i < f && d.push(m, f), f + i < _ && d.push(f, _));
@@ -13050,21 +13070,21 @@ function rv(r, t, e, i, n, o, a, h) {
13050
13070
  }
13051
13071
  return a;
13052
13072
  }
13053
- function $i(r, t) {
13073
+ function Qi(r, t) {
13054
13074
  return t * Math.round(r / t);
13055
13075
  }
13056
13076
  function sv(r, t, e, i, n, o, a) {
13057
13077
  if (t == e)
13058
13078
  return a;
13059
- let h = $i(r[t], n), c = $i(r[t + 1], n);
13079
+ let h = Qi(r[t], n), c = Qi(r[t + 1], n);
13060
13080
  t += i, o[a++] = h, o[a++] = c;
13061
13081
  let d, f;
13062
13082
  do
13063
- if (d = $i(r[t], n), f = $i(r[t + 1], n), t += i, t == e)
13083
+ if (d = Qi(r[t], n), f = Qi(r[t + 1], n), t += i, t == e)
13064
13084
  return o[a++] = d, o[a++] = f, a;
13065
13085
  while (d == h && f == c);
13066
13086
  for (; t < e; ) {
13067
- const _ = $i(r[t], n), m = $i(r[t + 1], n);
13087
+ const _ = Qi(r[t], n), m = Qi(r[t + 1], n);
13068
13088
  if (t += i, _ == d && m == f)
13069
13089
  continue;
13070
13090
  const v = d - h, y = f - c, E = _ - h, C = m - c;
@@ -13076,7 +13096,7 @@ function sv(r, t, e, i, n, o, a) {
13076
13096
  }
13077
13097
  return o[a++] = d, o[a++] = f, a;
13078
13098
  }
13079
- function $d(r, t, e, i, n, o, a, h) {
13099
+ function Qd(r, t, e, i, n, o, a, h) {
13080
13100
  for (let c = 0, d = e.length; c < d; ++c) {
13081
13101
  const f = e[c];
13082
13102
  a = sv(
@@ -13094,7 +13114,7 @@ function $d(r, t, e, i, n, o, a, h) {
13094
13114
  function ov(r, t, e, i, n, o, a, h) {
13095
13115
  for (let c = 0, d = e.length; c < d; ++c) {
13096
13116
  const f = e[c], _ = [];
13097
- a = $d(
13117
+ a = Qd(
13098
13118
  r,
13099
13119
  t,
13100
13120
  f,
@@ -13298,7 +13318,7 @@ class no extends gn {
13298
13318
  }
13299
13319
  }
13300
13320
  const eu = no;
13301
- class Ql extends gn {
13321
+ class $l extends gn {
13302
13322
  /**
13303
13323
  * @param {import("../coordinate.js").Coordinate} coordinates Coordinates.
13304
13324
  * @param {import("./Geometry.js").GeometryLayout} [layout] Layout.
@@ -13312,7 +13332,7 @@ class Ql extends gn {
13312
13332
  * @api
13313
13333
  */
13314
13334
  clone() {
13315
- const t = new Ql(this.flatCoordinates.slice(), this.layout);
13335
+ const t = new $l(this.flatCoordinates.slice(), this.layout);
13316
13336
  return t.applyProperties(this), t;
13317
13337
  }
13318
13338
  /**
@@ -13384,7 +13404,7 @@ class Ql extends gn {
13384
13404
  ), this.changed();
13385
13405
  }
13386
13406
  }
13387
- const ro = Ql;
13407
+ const ro = $l;
13388
13408
  function lv(r, t, e, i, n) {
13389
13409
  return !Dd(
13390
13410
  n,
@@ -13412,7 +13432,7 @@ function rn(r, t, e, i, n, o) {
13412
13432
  }
13413
13433
  return a !== 0;
13414
13434
  }
13415
- function $l(r, t, e, i, n, o) {
13435
+ function Ql(r, t, e, i, n, o) {
13416
13436
  if (e.length === 0 || !rn(r, t, e[0], i, n, o))
13417
13437
  return !1;
13418
13438
  for (let a = 1, h = e.length; a < h; ++a)
@@ -13425,7 +13445,7 @@ function hv(r, t, e, i, n, o) {
13425
13445
  return !1;
13426
13446
  for (let a = 0, h = e.length; a < h; ++a) {
13427
13447
  const c = e[a];
13428
- if ($l(r, t, c, i, n, o))
13448
+ if (Ql(r, t, c, i, n, o))
13429
13449
  return !0;
13430
13450
  t = c[c.length - 1];
13431
13451
  }
@@ -13435,15 +13455,15 @@ function nf(r, t, e, i, n, o, a) {
13435
13455
  let h, c, d, f, _, m, v;
13436
13456
  const y = n[o + 1], E = [];
13437
13457
  for (let w = 0, b = e.length; w < b; ++w) {
13438
- const S = e[w];
13439
- for (f = r[S - i], m = r[S - i + 1], h = t; h < S; h += i)
13458
+ const T = e[w];
13459
+ for (f = r[T - i], m = r[T - i + 1], h = t; h < T; h += i)
13440
13460
  _ = r[h], v = r[h + 1], (y <= m && v <= y || m <= y && y <= v) && (d = (y - m) / (v - m) * (_ - f) + f, E.push(d)), f = _, m = v;
13441
13461
  }
13442
13462
  let C = NaN, P = -1 / 0;
13443
13463
  for (E.sort(Gi), f = E[0], h = 1, c = E.length; h < c; ++h) {
13444
13464
  _ = E[h];
13445
13465
  const w = Math.abs(_ - f);
13446
- w > P && (d = (f + _) / 2, $l(r, t, e, i, d, y) && (C = d, P = w)), f = _;
13466
+ w > P && (d = (f + _) / 2, Ql(r, t, e, i, d, y) && (C = d, P = w)), f = _;
13447
13467
  }
13448
13468
  return isNaN(C) && (C = n[o]), a ? (a.push(C, y, P), a) : [C, y, P];
13449
13469
  }
@@ -13714,7 +13734,7 @@ class zr extends gn {
13714
13734
  * @return {boolean} Contains (x, y).
13715
13735
  */
13716
13736
  containsXY(t, e) {
13717
- return $l(
13737
+ return Ql(
13718
13738
  this.getOrientedFlatCoordinates(),
13719
13739
  0,
13720
13740
  this.ends_,
@@ -13853,7 +13873,7 @@ class zr extends gn {
13853
13873
  */
13854
13874
  getSimplifiedGeometryInternal(t) {
13855
13875
  const e = [], i = [];
13856
- return e.length = $d(
13876
+ return e.length = Qd(
13857
13877
  this.flatCoordinates,
13858
13878
  0,
13859
13879
  this.ends_,
@@ -15671,7 +15691,7 @@ class Sv extends Ae {
15671
15691
  this.state_ && (this.state_.layer = null, this.state_ = null), super.disposeInternal();
15672
15692
  }
15673
15693
  }
15674
- const uf = Sv, $t = {
15694
+ const uf = Sv, Qt = {
15675
15695
  /**
15676
15696
  * Triggered before a layer is rendered.
15677
15697
  * @event module:ol/render/Event~RenderEvent#prerender
@@ -15887,7 +15907,7 @@ class Pv extends uf {
15887
15907
  setMap(t) {
15888
15908
  this.mapPrecomposeKey_ && (Lt(this.mapPrecomposeKey_), this.mapPrecomposeKey_ = null), t || this.changed(), this.mapRenderKey_ && (Lt(this.mapRenderKey_), this.mapRenderKey_ = null), t && (this.mapPrecomposeKey_ = ht(
15889
15909
  t,
15890
- $t.PRECOMPOSE,
15910
+ Qt.PRECOMPOSE,
15891
15911
  function(e) {
15892
15912
  const n = /** @type {import("../render/Event.js").default} */ e.frameState.layerStatesArray, o = this.getLayerState(!1);
15893
15913
  ft(
@@ -15997,19 +16017,19 @@ class kv extends Io {
15997
16017
  forEachFeatureAtCoordinate(t, e, i, n, o, a, h, c) {
15998
16018
  let d;
15999
16019
  const f = e.viewState;
16000
- function _(S, M, A, I) {
16001
- return o.call(a, M, S ? A : null, I);
16020
+ function _(T, M, A, I) {
16021
+ return o.call(a, M, T ? A : null, I);
16002
16022
  }
16003
16023
  const m = f.projection, v = Fd(t.slice(), m), y = [[0, 0]];
16004
16024
  if (m.canWrapX() && n) {
16005
- const S = m.getExtent(), M = Pt(S);
16025
+ const T = m.getExtent(), M = Pt(T);
16006
16026
  y.push([-M, 0], [M, 0]);
16007
16027
  }
16008
16028
  const E = e.layerStatesArray, C = E.length, P = (
16009
16029
  /** @type {Array<HitMatch<T>>} */
16010
16030
  []
16011
16031
  ), w = [];
16012
- for (let S = 0; S < y.length; S++)
16032
+ for (let T = 0; T < y.length; T++)
16013
16033
  for (let M = C - 1; M >= 0; --M) {
16014
16034
  const A = E[M], I = A.layer;
16015
16035
  if (I.hasRenderer() && th(A, f) && h.call(c, I)) {
@@ -16019,7 +16039,7 @@ class kv extends Io {
16019
16039
  null,
16020
16040
  A.managed
16021
16041
  );
16022
- w[0] = X[0] + y[S][0], w[1] = X[1] + y[S][1], d = z.forEachFeatureAtCoordinate(
16042
+ w[0] = X[0] + y[T][0], w[1] = X[1] + y[T][1], d = z.forEachFeatureAtCoordinate(
16023
16043
  w,
16024
16044
  e,
16025
16045
  i,
@@ -16034,7 +16054,7 @@ class kv extends Io {
16034
16054
  if (P.length === 0)
16035
16055
  return;
16036
16056
  const b = 1 / P.length;
16037
- return P.forEach((S, M) => S.distanceSq += M * b), P.sort((S, M) => S.distanceSq - M.distanceSq), P.some((S) => d = S.callback(S.feature, S.layer, S.geometry)), d;
16057
+ return P.forEach((T, M) => T.distanceSq += M * b), P.sort((T, M) => T.distanceSq - M.distanceSq), P.some((T) => d = T.callback(T.feature, T.layer, T.geometry)), d;
16038
16058
  }
16039
16059
  /**
16040
16060
  * @param {import("../coordinate.js").Coordinate} coordinate Coordinate.
@@ -16191,7 +16211,7 @@ function zv(r, t) {
16191
16211
  }
16192
16212
  }
16193
16213
  }
16194
- const gf = "10px sans-serif", he = "#000", Qn = "round", fi = [], gi = 0, $n = "round", Br = 10, Gr = "#000", Ur = "center", ho = "middle", sn = [0, 0, 0, 0], Zr = 1, si = new Ae();
16214
+ const gf = "10px sans-serif", he = "#000", $n = "round", fi = [], gi = 0, Qn = "round", Br = 10, Gr = "#000", Ur = "center", ho = "middle", sn = [0, 0, 0, 0], Zr = 1, si = new Ae();
16195
16215
  let zn = null, fl;
16196
16216
  const gl = {}, Nv = function() {
16197
16217
  const t = "32px ", e = ["monospace", "serif"], i = e.length, n = "wmytzilWMYTZIL@#/&?$%10";
@@ -16356,7 +16376,7 @@ class jv extends Rv {
16356
16376
  this.renderedVisible_ && (this.element_.style.display = "none", this.renderedVisible_ = !1);
16357
16377
  return;
16358
16378
  }
16359
- this.calculateMatrices2D(t), this.dispatchRenderEvent($t.PRECOMPOSE, t);
16379
+ this.calculateMatrices2D(t), this.dispatchRenderEvent(Qt.PRECOMPOSE, t);
16360
16380
  const e = t.layerStatesArray.sort(function(a, h) {
16361
16381
  return a.zIndex - h.zIndex;
16362
16382
  }), i = t.viewState;
@@ -16378,7 +16398,7 @@ class jv extends Rv {
16378
16398
  d
16379
16399
  ));
16380
16400
  }
16381
- this.flushDeclutterItems(t), zv(this.element_, this.children_), this.dispatchRenderEvent($t.POSTCOMPOSE, t), this.renderedVisible_ || (this.element_.style.display = "", this.renderedVisible_ = !0), this.scheduleExpireIconCache(t);
16401
+ this.flushDeclutterItems(t), zv(this.element_, this.children_), this.dispatchRenderEvent(Qt.POSTCOMPOSE, t), this.renderedVisible_ || (this.element_.style.display = "", this.renderedVisible_ = !0), this.scheduleExpireIconCache(t);
16382
16402
  }
16383
16403
  /**
16384
16404
  * @param {import("../Map.js").FrameState} frameState Frame state.
@@ -17160,8 +17180,8 @@ class Jv extends qv {
17160
17180
  this.dequeue()[0], a = o.getKey(), n = o.getState(), n === J.IDLE && !(a in this.tilesLoadingKeys_) && (this.tilesLoadingKeys_[a] = !0, ++this.tilesLoading_, ++i, o.load());
17161
17181
  }
17162
17182
  }
17163
- const Qv = Jv;
17164
- function $v(r, t, e, i, n) {
17183
+ const $v = Jv;
17184
+ function Qv(r, t, e, i, n) {
17165
17185
  if (!r || !(e in r.wantedTiles) || !r.wantedTiles[e][t.getKey()])
17166
17186
  return uo;
17167
17187
  const o = r.viewState.center, a = i[0] - o[0], h = i[1] - o[1];
@@ -17677,7 +17697,7 @@ function nh(r) {
17677
17697
  e += r[n].clientX, i += r[n].clientY;
17678
17698
  return { clientX: e / t, clientY: i / t };
17679
17699
  }
17680
- const Qr = cx;
17700
+ const $r = cx;
17681
17701
  function pl(r) {
17682
17702
  const t = arguments;
17683
17703
  return function(e) {
@@ -17753,7 +17773,7 @@ const ux = function(r) {
17753
17773
  "mapBrowserEvent must originate from a pointer event"
17754
17774
  ), t.isPrimary && t.button === 0;
17755
17775
  };
17756
- class mx extends Qr {
17776
+ class mx extends $r {
17757
17777
  /**
17758
17778
  * @param {Options} [options] Options.
17759
17779
  */
@@ -17821,7 +17841,7 @@ class mx extends Qr {
17821
17841
  }
17822
17842
  }
17823
17843
  const yx = mx;
17824
- class vx extends Qr {
17844
+ class vx extends $r {
17825
17845
  /**
17826
17846
  * @param {Options} [options] Options.
17827
17847
  */
@@ -17961,7 +17981,7 @@ class Ba extends _i {
17961
17981
  super(t), this.coordinate = e, this.mapBrowserEvent = i;
17962
17982
  }
17963
17983
  }
17964
- class Lx extends Qr {
17984
+ class Lx extends $r {
17965
17985
  /**
17966
17986
  * @param {Options} [options] Options.
17967
17987
  */
@@ -18077,7 +18097,7 @@ class Cx extends bx {
18077
18097
  });
18078
18098
  }
18079
18099
  }
18080
- const Tx = Cx, Qi = {
18100
+ const Tx = Cx, $i = {
18081
18101
  LEFT: "ArrowLeft",
18082
18102
  UP: "ArrowUp",
18083
18103
  RIGHT: "ArrowRight",
@@ -18106,10 +18126,10 @@ class Sx extends Jr {
18106
18126
  /** @type {KeyboardEvent} */
18107
18127
  t.originalEvent
18108
18128
  ), n = i.key;
18109
- if (this.condition_(t) && (n == Qi.DOWN || n == Qi.LEFT || n == Qi.RIGHT || n == Qi.UP)) {
18129
+ if (this.condition_(t) && (n == $i.DOWN || n == $i.LEFT || n == $i.RIGHT || n == $i.UP)) {
18110
18130
  const a = t.map.getView(), h = a.getResolution() * this.pixelDelta_;
18111
18131
  let c = 0, d = 0;
18112
- n == Qi.DOWN ? d = -h : n == Qi.LEFT ? c = -h : n == Qi.RIGHT ? c = h : d = h;
18132
+ n == $i.DOWN ? d = -h : n == $i.LEFT ? c = -h : n == $i.RIGHT ? c = h : d = h;
18113
18133
  const f = [c, d];
18114
18134
  Nl(f, a.getRotation()), ax(a, f, this.duration_), i.preventDefault(), e = !0;
18115
18135
  }
@@ -18289,7 +18309,7 @@ class Ix extends Jr {
18289
18309
  }
18290
18310
  }
18291
18311
  const Dx = Ix;
18292
- class Ox extends Qr {
18312
+ class Ox extends $r {
18293
18313
  /**
18294
18314
  * @param {Options} [options] Options.
18295
18315
  */
@@ -18343,7 +18363,7 @@ class Ox extends Qr {
18343
18363
  }
18344
18364
  }
18345
18365
  const Fx = Ox;
18346
- class zx extends Qr {
18366
+ class zx extends $r {
18347
18367
  /**
18348
18368
  * @param {Options} [options] Options.
18349
18369
  */
@@ -18463,7 +18483,7 @@ class Ux extends Ae {
18463
18483
  const e = Zx(t);
18464
18484
  this.renderComplete_, this.loaded_ = !0, this.boundHandleBrowserEvent_ = this.handleBrowserEvent.bind(this), this.maxTilesLoading_ = t.maxTilesLoading !== void 0 ? t.maxTilesLoading : 16, this.pixelRatio_ = t.pixelRatio !== void 0 ? t.pixelRatio : Hd, this.postRenderTimeoutHandle_, this.animationDelayKey_, this.animationDelay_ = this.animationDelay_.bind(this), this.coordinateToPixelTransform_ = Vt(), this.pixelToCoordinateTransform_ = Vt(), this.frameIndex_ = 0, this.frameState_ = null, this.previousExtent_ = null, this.viewPropertyListenerKey_ = null, this.viewChangeListenerKey_ = null, this.layerGroupPropertyListenerKeys_ = null, this.viewport_ = document.createElement("div"), this.viewport_.className = "ol-viewport" + ("ontouchstart" in window ? " ol-touch" : ""), this.viewport_.style.position = "relative", this.viewport_.style.overflow = "hidden", this.viewport_.style.width = "100%", this.viewport_.style.height = "100%", this.overlayContainer_ = document.createElement("div"), this.overlayContainer_.style.position = "absolute", this.overlayContainer_.style.zIndex = "0", this.overlayContainer_.style.width = "100%", this.overlayContainer_.style.height = "100%", this.overlayContainer_.style.pointerEvents = "none", this.overlayContainer_.className = "ol-overlaycontainer", this.viewport_.appendChild(this.overlayContainer_), this.overlayContainerStopEvent_ = document.createElement("div"), this.overlayContainerStopEvent_.style.position = "absolute", this.overlayContainerStopEvent_.style.zIndex = "0", this.overlayContainerStopEvent_.style.width = "100%", this.overlayContainerStopEvent_.style.height = "100%", this.overlayContainerStopEvent_.style.pointerEvents = "none", this.overlayContainerStopEvent_.className = "ol-overlaycontainer-stopevent", this.viewport_.appendChild(this.overlayContainerStopEvent_), this.mapBrowserEventHandler_ = null, this.moveTolerance_ = t.moveTolerance, this.keyboardEventTarget_ = e.keyboardEventTarget, this.targetChangeHandlerKeys_ = null, this.targetElement_ = null, this.resizeObserver_ = new ResizeObserver(() => this.updateSize()), this.controls = e.controls || mf(), this.interactions = e.interactions || Bx({
18465
18485
  onFocusOnly: !0
18466
- }), this.overlays_ = e.overlays, this.overlayIdIndex_ = {}, this.renderer_ = null, this.postRenderFunctions_ = [], this.tileQueue_ = new Qv(
18486
+ }), this.overlays_ = e.overlays, this.overlayIdIndex_ = {}, this.renderer_ = null, this.postRenderFunctions_ = [], this.tileQueue_ = new $v(
18467
18487
  this.getTilePriority.bind(this),
18468
18488
  this.handleTileChange_.bind(this)
18469
18489
  ), this.addChangeListener(
@@ -18971,7 +18991,7 @@ class Ux extends Ae {
18971
18991
  * @return {number} Tile priority.
18972
18992
  */
18973
18993
  getTilePriority(t, e, i, n) {
18974
- return $v(
18994
+ return Qv(
18975
18995
  this.frameState_,
18976
18996
  t,
18977
18997
  e,
@@ -19041,8 +19061,8 @@ class Ux extends Ae {
19041
19061
  }
19042
19062
  e.getTilesLoading() < n && (e.reprioritize(), e.loadMoreTiles(n, o));
19043
19063
  }
19044
- t && this.renderer_ && !t.animate && (this.renderComplete_ === !0 ? (this.hasListener($t.RENDERCOMPLETE) && this.renderer_.dispatchRenderEvent(
19045
- $t.RENDERCOMPLETE,
19064
+ t && this.renderer_ && !t.animate && (this.renderComplete_ === !0 ? (this.hasListener(Qt.RENDERCOMPLETE) && this.renderer_.dispatchRenderEvent(
19065
+ Qt.RENDERCOMPLETE,
19046
19066
  t
19047
19067
  ), this.loaded_ === !1 && (this.loaded_ = !0, this.dispatchEvent(
19048
19068
  new Nn(ai.LOADEND, this, t)
@@ -19312,7 +19332,7 @@ class Ux extends Ae {
19312
19332
  new Nn(ai.MOVESTART, this, n)
19313
19333
  ), this.previousExtent_ = Vr(this.previousExtent_)), this.previousExtent_ && !o.viewHints[Ht.ANIMATING] && !o.viewHints[Ht.INTERACTING] && !Jn(o.extent, this.previousExtent_) && (this.dispatchEvent(
19314
19334
  new Nn(ai.MOVEEND, this, o)
19315
- ), Md(o.extent, this.previousExtent_))), this.dispatchEvent(new Nn(ai.POSTRENDER, this, o)), this.renderComplete_ = this.hasListener(ai.LOADSTART) || this.hasListener(ai.LOADEND) || this.hasListener($t.RENDERCOMPLETE) ? !this.tileQueue_.getTilesLoading() && !this.tileQueue_.getCount() && !this.getLoadingOrNotReady() : void 0, this.postRenderTimeoutHandle_ || (this.postRenderTimeoutHandle_ = setTimeout(() => {
19335
+ ), Md(o.extent, this.previousExtent_))), this.dispatchEvent(new Nn(ai.POSTRENDER, this, o)), this.renderComplete_ = this.hasListener(ai.LOADSTART) || this.hasListener(ai.LOADEND) || this.hasListener(Qt.RENDERCOMPLETE) ? !this.tileQueue_.getTilesLoading() && !this.tileQueue_.getCount() && !this.getLoadingOrNotReady() : void 0, this.postRenderTimeoutHandle_ || (this.postRenderTimeoutHandle_ = setTimeout(() => {
19316
19336
  this.postRenderTimeoutHandle_ = void 0, this.handlePostRender();
19317
19337
  }, 0));
19318
19338
  }
@@ -19880,8 +19900,8 @@ class sh extends bf {
19880
19900
  * @protected
19881
19901
  */
19882
19902
  createRenderOptions() {
19883
- let t = Qn, e = $n, i = 0, n = null, o = 0, a, h = 0;
19884
- this.stroke_ && (a = this.stroke_.getColor(), a === null && (a = Gr), a = He(a), h = this.stroke_.getWidth(), h === void 0 && (h = Zr), n = this.stroke_.getLineDash(), o = this.stroke_.getLineDashOffset(), e = this.stroke_.getLineJoin(), e === void 0 && (e = $n), t = this.stroke_.getLineCap(), t === void 0 && (t = Qn), i = this.stroke_.getMiterLimit(), i === void 0 && (i = Br));
19903
+ let t = $n, e = Qn, i = 0, n = null, o = 0, a, h = 0;
19904
+ this.stroke_ && (a = this.stroke_.getColor(), a === null && (a = Gr), a = He(a), h = this.stroke_.getWidth(), h === void 0 && (h = Zr), n = this.stroke_.getLineDash(), o = this.stroke_.getLineDashOffset(), e = this.stroke_.getLineJoin(), e === void 0 && (e = Qn), t = this.stroke_.getLineCap(), t === void 0 && (t = $n), i = this.stroke_.getMiterLimit(), i === void 0 && (i = Br));
19885
19905
  const c = this.calculateLineJoinSize_(e, h, i), d = Math.max(this.radius_, this.radius2_ || 0), f = Math.ceil(2 * d + c);
19886
19906
  return {
19887
19907
  strokeStyle: a,
@@ -20190,7 +20210,7 @@ class lh {
20190
20210
  }
20191
20211
  }
20192
20212
  const fo = lh;
20193
- class Qo {
20213
+ class $o {
20194
20214
  /**
20195
20215
  * @param {Options} [options] Style options.
20196
20216
  */
@@ -20205,7 +20225,7 @@ class Qo {
20205
20225
  clone() {
20206
20226
  let t = this.getGeometry();
20207
20227
  return t && typeof t == "object" && (t = /** @type {import("../geom/Geometry.js").default} */
20208
- t.clone()), new Qo({
20228
+ t.clone()), new $o({
20209
20229
  geometry: t,
20210
20230
  fill: this.getFill() ? this.getFill().clone() : void 0,
20211
20231
  image: this.getImage() ? this.getImage().clone() : void 0,
@@ -20402,7 +20422,7 @@ function Hx(r, t) {
20402
20422
  width: 1.25
20403
20423
  });
20404
20424
  Ga = [
20405
- new Qo({
20425
+ new $o({
20406
20426
  image: new Tf({
20407
20427
  fill: e,
20408
20428
  stroke: i,
@@ -20418,7 +20438,7 @@ function Hx(r, t) {
20418
20438
  function fu(r) {
20419
20439
  return r.getGeometry();
20420
20440
  }
20421
- const Hn = Qo;
20441
+ const Hn = $o;
20422
20442
  function Xx(r, t, e) {
20423
20443
  const i = (
20424
20444
  /** @type {HTMLImageElement} */
@@ -20426,7 +20446,7 @@ function Xx(r, t, e) {
20426
20446
  );
20427
20447
  let n = !0, o = !1, a = !1;
20428
20448
  const h = [
20429
- $s(i, ot.LOAD, function() {
20449
+ Qs(i, ot.LOAD, function() {
20430
20450
  a = !0, o || t();
20431
20451
  })
20432
20452
  ];
@@ -20434,7 +20454,7 @@ function Xx(r, t, e) {
20434
20454
  n && t();
20435
20455
  }).catch(function(c) {
20436
20456
  n && (a ? t() : e());
20437
- })) : h.push($s(i, ot.ERROR, e)), function() {
20457
+ })) : h.push(Qs(i, ot.ERROR, e)), function() {
20438
20458
  n = !1, h.forEach(Lt);
20439
20459
  };
20440
20460
  }
@@ -21235,20 +21255,20 @@ class uh {
21235
21255
  }
21236
21256
  const Sf = uh;
21237
21257
  let rr = 0;
21238
- const Qt = 1 << rr++, dt = 1 << rr++, tr = 1 << rr++, dh = 1 << rr++, $r = 1 << rr++, Me = Math.pow(2, rr) - 1, Pf = {
21239
- [Qt]: "boolean",
21258
+ const $t = 1 << rr++, dt = 1 << rr++, tr = 1 << rr++, dh = 1 << rr++, Qr = 1 << rr++, Me = Math.pow(2, rr) - 1, Pf = {
21259
+ [$t]: "boolean",
21240
21260
  [dt]: "number",
21241
21261
  [tr]: "string",
21242
21262
  [dh]: "color",
21243
- [$r]: "number[]"
21244
- }, Qx = Object.keys(Pf).map(Number).sort(Gi);
21263
+ [Qr]: "number[]"
21264
+ }, $x = Object.keys(Pf).map(Number).sort(Gi);
21245
21265
  function go(r) {
21246
21266
  const t = [];
21247
- for (const e of Qx)
21248
- $x(r, e) && t.push(Pf[e]);
21267
+ for (const e of $x)
21268
+ Qx(r, e) && t.push(Pf[e]);
21249
21269
  return t.length === 0 ? "untyped" : t.length < 3 ? t.join(" or ") : t.slice(0, -1).join(", ") + ", or " + t[t.length - 1];
21250
21270
  }
21251
- function $x(r, t) {
21271
+ function Qx(r, t) {
21252
21272
  return (r & t) === t;
21253
21273
  }
21254
21274
  function kf(r, t) {
@@ -21279,10 +21299,10 @@ function Mf() {
21279
21299
  properties: /* @__PURE__ */ new Set()
21280
21300
  };
21281
21301
  }
21282
- function $o(r, t) {
21302
+ function Qo(r, t) {
21283
21303
  switch (typeof r) {
21284
21304
  case "boolean":
21285
- return new Ni(Qt, r);
21305
+ return new Ni($t, r);
21286
21306
  case "number":
21287
21307
  return new Ni(dt, r);
21288
21308
  case "string":
@@ -21297,7 +21317,7 @@ function $o(r, t) {
21297
21317
  for (const i of r)
21298
21318
  if (typeof i != "number")
21299
21319
  throw new Error("Expected an array of numbers");
21300
- let e = $r;
21320
+ let e = Qr;
21301
21321
  return (r.length === 3 || r.length === 4) && (e |= dh), new Ni(e, r);
21302
21322
  }
21303
21323
  const B = {
@@ -21337,18 +21357,18 @@ const B = {
21337
21357
  [B.Get]: xt(i0, Me),
21338
21358
  [B.Var]: xt(n0, Me),
21339
21359
  [B.Resolution]: xt(r0, dt),
21340
- [B.Any]: xt(bt(2, 1 / 0, Qt), Qt),
21341
- [B.All]: xt(bt(2, 1 / 0, Qt), Qt),
21342
- [B.Not]: xt(bt(1, 1, Qt), Qt),
21343
- [B.Equal]: xt(bt(2, 2, Me), Qt),
21344
- [B.NotEqual]: xt(bt(2, 2, Me), Qt),
21345
- [B.GreaterThan]: xt(bt(2, 2, Me), Qt),
21360
+ [B.Any]: xt(bt(2, 1 / 0, $t), $t),
21361
+ [B.All]: xt(bt(2, 1 / 0, $t), $t),
21362
+ [B.Not]: xt(bt(1, 1, $t), $t),
21363
+ [B.Equal]: xt(bt(2, 2, Me), $t),
21364
+ [B.NotEqual]: xt(bt(2, 2, Me), $t),
21365
+ [B.GreaterThan]: xt(bt(2, 2, Me), $t),
21346
21366
  [B.GreaterThanOrEqualTo]: xt(
21347
21367
  bt(2, 2, Me),
21348
- Qt
21368
+ $t
21349
21369
  ),
21350
- [B.LessThan]: xt(bt(2, 2, Me), Qt),
21351
- [B.LessThanOrEqualTo]: xt(bt(2, 2, Me), Qt),
21370
+ [B.LessThan]: xt(bt(2, 2, Me), $t),
21371
+ [B.LessThanOrEqualTo]: xt(bt(2, 2, Me), $t),
21352
21372
  [B.Multiply]: xt(bt(2, 1 / 0, dt), dt),
21353
21373
  [B.Divide]: xt(bt(2, 2, dt), dt),
21354
21374
  [B.Add]: xt(bt(2, 1 / 0, dt), dt),
@@ -21372,7 +21392,7 @@ const B = {
21372
21392
  function i0(r, t) {
21373
21393
  if (r.length !== 2)
21374
21394
  throw new Error("Expected 1 argument for get operation");
21375
- const e = $o(r[1], t);
21395
+ const e = Qo(r[1], t);
21376
21396
  if (!(e instanceof Ni))
21377
21397
  throw new Error("Expected a literal argument for get operation");
21378
21398
  if (typeof e.value != "string")
@@ -21382,7 +21402,7 @@ function i0(r, t) {
21382
21402
  function n0(r, t) {
21383
21403
  if (r.length !== 2)
21384
21404
  throw new Error("Expected 1 argument for var operation");
21385
- const e = $o(r[1], t);
21405
+ const e = Qo(r[1], t);
21386
21406
  if (!(e instanceof Ni))
21387
21407
  throw new Error("Expected a literal argument for var operation");
21388
21408
  if (typeof e.value != "string")
@@ -21411,7 +21431,7 @@ function bt(r, t, e) {
21411
21431
  );
21412
21432
  const h = new Array(a);
21413
21433
  for (let c = 0; c < a; ++c) {
21414
- const d = $o(i[c + 1], n);
21434
+ const d = Qo(i[c + 1], n);
21415
21435
  if (!kf(e, d.type)) {
21416
21436
  const f = go(e), _ = go(d.type);
21417
21437
  throw new Error(
@@ -21443,7 +21463,7 @@ function Rf() {
21443
21463
  };
21444
21464
  }
21445
21465
  function ji(r, t, e) {
21446
- const i = $o(r, e);
21466
+ const i = Qo(r, e);
21447
21467
  if (!kf(t, i.type)) {
21448
21468
  const n = go(t), o = go(i.type);
21449
21469
  throw new Error(
@@ -21670,7 +21690,7 @@ function _u(r) {
21670
21690
  function g0(r, t) {
21671
21691
  const e = r.length, i = new Array(e);
21672
21692
  for (let n = 0; n < e; ++n) {
21673
- const o = r[n], a = "filter" in o ? ji(o.filter, Qt, t) : d0;
21693
+ const o = r[n], a = "filter" in o ? ji(o.filter, $t, t) : d0;
21674
21694
  let h;
21675
21695
  if (Array.isArray(o.style)) {
21676
21696
  const c = o.style.length;
@@ -21833,7 +21853,7 @@ function _0(r, t) {
21833
21853
  r,
21834
21854
  e + "justify",
21835
21855
  t
21836
- ), S = Fi(
21856
+ ), T = Fi(
21837
21857
  r,
21838
21858
  e + "baseline",
21839
21859
  t
@@ -21863,8 +21883,8 @@ function _0(r, t) {
21863
21883
  throw new Error("Expected left, right, or center for text-justify");
21864
21884
  A.setJustify(z);
21865
21885
  }
21866
- if (S) {
21867
- const z = S(I);
21886
+ if (T) {
21887
+ const z = T(I);
21868
21888
  if (z !== "bottom" && z !== "top" && z !== "middle" && z !== "alphabetic" && z !== "hanging")
21869
21889
  throw new Error(
21870
21890
  "Expected bottom, top, middle, alphabetic, or hanging for text-baseline"
@@ -21904,7 +21924,7 @@ function m0(r, t) {
21904
21924
  ), v = mu(
21905
21925
  r,
21906
21926
  e + "anchor-y-units"
21907
- ), y = L0(r, e + "color"), E = E0(r, e + "cross-origin"), C = w0(r, e + "offset"), P = pu(r, e + "offset-origin"), w = Zn(r, e + "width"), b = Zn(r, e + "height"), S = x0(r, e + "size"), M = fh(r, e + "declutter"), A = new ch({
21927
+ ), y = L0(r, e + "color"), E = E0(r, e + "cross-origin"), C = w0(r, e + "offset"), P = pu(r, e + "offset-origin"), w = Zn(r, e + "width"), b = Zn(r, e + "height"), T = x0(r, e + "size"), M = fh(r, e + "declutter"), A = new ch({
21908
21928
  src: n,
21909
21929
  anchorOrigin: _,
21910
21930
  anchorXUnits: m,
@@ -21915,7 +21935,7 @@ function m0(r, t) {
21915
21935
  offsetOrigin: P,
21916
21936
  height: b,
21917
21937
  width: w,
21918
- size: S,
21938
+ size: T,
21919
21939
  declutterMode: M
21920
21940
  });
21921
21941
  return function(I) {
@@ -21994,7 +22014,7 @@ function Fi(r, t, e) {
21994
22014
  function Hr(r, t, e) {
21995
22015
  if (!(t in r))
21996
22016
  return null;
21997
- const i = ji(r[t], Qt, e);
22017
+ const i = ji(r[t], $t, e);
21998
22018
  return function(n) {
21999
22019
  const o = i(n);
22000
22020
  if (typeof o != "boolean")
@@ -22017,7 +22037,7 @@ function Af(r, t, e) {
22017
22037
  function If(r, t, e) {
22018
22038
  if (!(t in r))
22019
22039
  return null;
22020
- const i = ji(r[t], $r, e);
22040
+ const i = ji(r[t], Qr, e);
22021
22041
  return function(n) {
22022
22042
  return ts(i(n), t);
22023
22043
  };
@@ -22025,7 +22045,7 @@ function If(r, t, e) {
22025
22045
  function _o(r, t, e) {
22026
22046
  if (!(t in r))
22027
22047
  return null;
22028
- const i = ji(r[t], $r, e);
22048
+ const i = ji(r[t], Qr, e);
22029
22049
  return function(n) {
22030
22050
  const o = ts(i(n), t);
22031
22051
  if (o.length !== 2)
@@ -22038,7 +22058,7 @@ function ta(r, t, e) {
22038
22058
  return null;
22039
22059
  const i = ji(
22040
22060
  r[t],
22041
- $r | dt,
22061
+ Qr | dt,
22042
22062
  e
22043
22063
  );
22044
22064
  return function(n) {
@@ -23363,9 +23383,9 @@ class mh extends Nf {
23363
23383
  */
23364
23384
  dispatchPreComposeEvent(t, e) {
23365
23385
  const i = this.getLayer();
23366
- if (i.hasListener($t.PRECOMPOSE)) {
23386
+ if (i.hasListener(Qt.PRECOMPOSE)) {
23367
23387
  const n = new Pr(
23368
- $t.PRECOMPOSE,
23388
+ Qt.PRECOMPOSE,
23369
23389
  void 0,
23370
23390
  e,
23371
23391
  t
@@ -23380,9 +23400,9 @@ class mh extends Nf {
23380
23400
  */
23381
23401
  dispatchPostComposeEvent(t, e) {
23382
23402
  const i = this.getLayer();
23383
- if (i.hasListener($t.POSTCOMPOSE)) {
23403
+ if (i.hasListener(Qt.POSTCOMPOSE)) {
23384
23404
  const n = new Pr(
23385
- $t.POSTCOMPOSE,
23405
+ Qt.POSTCOMPOSE,
23386
23406
  void 0,
23387
23407
  e,
23388
23408
  t
@@ -23484,7 +23504,7 @@ class mh extends Nf {
23484
23504
  * @protected
23485
23505
  */
23486
23506
  preRender(t, e) {
23487
- this.dispatchRenderEvent_($t.PRERENDER, t, e);
23507
+ this.dispatchRenderEvent_(Qt.PRERENDER, t, e);
23488
23508
  }
23489
23509
  /**
23490
23510
  * @param {WebGLRenderingContext} context The rendering context.
@@ -23492,7 +23512,7 @@ class mh extends Nf {
23492
23512
  * @protected
23493
23513
  */
23494
23514
  postRender(t, e) {
23495
- this.dispatchRenderEvent_($t.POSTRENDER, t, e);
23515
+ this.dispatchRenderEvent_(Qt.POSTRENDER, t, e);
23496
23516
  }
23497
23517
  }
23498
23518
  const X0 = mh, Ge = new Uint8Array(4);
@@ -23625,7 +23645,7 @@ function J0() {
23625
23645
  const r = 'const e="GENERATE_POLYGON_BUFFERS",t="GENERATE_POINT_BUFFERS",n="GENERATE_LINE_STRING_BUFFERS";function r(e,t){const n=t[0],r=t[1];return t[0]=e[0]*n+e[2]*r+e[4],t[1]=e[1]*n+e[3]*r+e[5],t}function x(e,t){const n=(r=t)[0]*r[3]-r[1]*r[2];var r;!function(e,t){if(!e)throw new Error(t)}(0!==n,"Transformation matrix cannot be inverted");const x=t[0],i=t[1],u=t[2],o=t[3],f=t[4],s=t[5];return e[0]=o/n,e[1]=-i/n,e[2]=-u/n,e[3]=x/n,e[4]=(u*s-o*f)/n,e[5]=-(x*s-i*f)/n,e}function i(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}new Array(6);var u={exports:{}};function o(e,t,n){n=n||2;var r,x,i,u,o,s,l,v=t&&t.length,c=v?t[0]*n:e.length,h=f(e,0,c,n,!0),g=[];if(!h||h.next===h.prev)return g;if(v&&(h=function(e,t,n,r){var x,i,u,o=[];for(x=0,i=t.length;x<i;x++)(u=f(e,t[x]*r,x<i-1?t[x+1]*r:e.length,r,!1))===u.next&&(u.steiner=!0),o.push(d(u));for(o.sort(p),x=0;x<o.length;x++)n=y(o[x],n);return n}(e,t,h,n)),e.length>80*n){r=i=e[0],x=u=e[1];for(var b=n;b<c;b+=n)(o=e[b])<r&&(r=o),(s=e[b+1])<x&&(x=s),o>i&&(i=o),s>u&&(u=s);l=0!==(l=Math.max(i-r,u-x))?32767/l:0}return a(h,g,n,r,x,l,0),g}function f(e,t,n,r,x){var i,u;if(x===O(e,t,n,r)>0)for(i=t;i<n;i+=r)u=P(i,e[i],e[i+1],u);else for(i=n-r;i>=t;i-=r)u=P(i,e[i],e[i+1],u);return u&&m(u,u.next)&&(B(u),u=u.next),u}function s(e,t){if(!e)return e;t||(t=e);var n,r=e;do{if(n=!1,r.steiner||!m(r,r.next)&&0!==M(r.prev,r,r.next))r=r.next;else{if(B(r),(r=t=r.prev)===r.next)break;n=!0}}while(n||r!==t);return t}function a(e,t,n,r,x,i,u){if(e){!u&&i&&function(e,t,n,r){var x=e;do{0===x.z&&(x.z=b(x.x,x.y,t,n,r)),x.prevZ=x.prev,x.nextZ=x.next,x=x.next}while(x!==e);x.prevZ.nextZ=null,x.prevZ=null,function(e){var t,n,r,x,i,u,o,f,s=1;do{for(n=e,e=null,i=null,u=0;n;){for(u++,r=n,o=0,t=0;t<s&&(o++,r=r.nextZ);t++);for(f=s;o>0||f>0&&r;)0!==o&&(0===f||!r||n.z<=r.z)?(x=n,n=n.nextZ,o--):(x=r,r=r.nextZ,f--),i?i.nextZ=x:e=x,x.prevZ=i,i=x;n=r}i.nextZ=null,s*=2}while(u>1)}(x)}(e,r,x,i);for(var o,f,p=e;e.prev!==e.next;)if(o=e.prev,f=e.next,i?v(e,r,x,i):l(e))t.push(o.i/n|0),t.push(e.i/n|0),t.push(f.i/n|0),B(e),e=f.next,p=f.next;else if((e=f)===p){u?1===u?a(e=c(s(e),t,n),t,n,r,x,i,2):2===u&&h(e,t,n,r,x,i):a(s(e),t,n,r,x,i,1);break}}}function l(e){var t=e.prev,n=e,r=e.next;if(M(t,n,r)>=0)return!1;for(var x=t.x,i=n.x,u=r.x,o=t.y,f=n.y,s=r.y,a=x<i?x<u?x:u:i<u?i:u,l=o<f?o<s?o:s:f<s?f:s,v=x>i?x>u?x:u:i>u?i:u,c=o>f?o>s?o:s:f>s?f:s,h=r.next;h!==t;){if(h.x>=a&&h.x<=v&&h.y>=l&&h.y<=c&&Z(x,o,i,f,u,s,h.x,h.y)&&M(h.prev,h,h.next)>=0)return!1;h=h.next}return!0}function v(e,t,n,r){var x=e.prev,i=e,u=e.next;if(M(x,i,u)>=0)return!1;for(var o=x.x,f=i.x,s=u.x,a=x.y,l=i.y,v=u.y,c=o<f?o<s?o:s:f<s?f:s,h=a<l?a<v?a:v:l<v?l:v,p=o>f?o>s?o:s:f>s?f:s,y=a>l?a>v?a:v:l>v?l:v,g=b(c,h,t,n,r),d=b(p,y,t,n,r),w=e.prevZ,m=e.nextZ;w&&w.z>=g&&m&&m.z<=d;){if(w.x>=c&&w.x<=p&&w.y>=h&&w.y<=y&&w!==x&&w!==u&&Z(o,a,f,l,s,v,w.x,w.y)&&M(w.prev,w,w.next)>=0)return!1;if(w=w.prevZ,m.x>=c&&m.x<=p&&m.y>=h&&m.y<=y&&m!==x&&m!==u&&Z(o,a,f,l,s,v,m.x,m.y)&&M(m.prev,m,m.next)>=0)return!1;m=m.nextZ}for(;w&&w.z>=g;){if(w.x>=c&&w.x<=p&&w.y>=h&&w.y<=y&&w!==x&&w!==u&&Z(o,a,f,l,s,v,w.x,w.y)&&M(w.prev,w,w.next)>=0)return!1;w=w.prevZ}for(;m&&m.z<=d;){if(m.x>=c&&m.x<=p&&m.y>=h&&m.y<=y&&m!==x&&m!==u&&Z(o,a,f,l,s,v,m.x,m.y)&&M(m.prev,m,m.next)>=0)return!1;m=m.nextZ}return!0}function c(e,t,n){var r=e;do{var x=r.prev,i=r.next.next;!m(x,i)&&A(x,r,r.next,i)&&F(x,i)&&F(i,x)&&(t.push(x.i/n|0),t.push(r.i/n|0),t.push(i.i/n|0),B(r),B(r.next),r=e=i),r=r.next}while(r!==e);return s(r)}function h(e,t,n,r,x,i){var u=e;do{for(var o=u.next.next;o!==u.prev;){if(u.i!==o.i&&w(u,o)){var f=I(u,o);return u=s(u,u.next),f=s(f,f.next),a(u,t,n,r,x,i,0),void a(f,t,n,r,x,i,0)}o=o.next}u=u.next}while(u!==e)}function p(e,t){return e.x-t.x}function y(e,t){var n=function(e,t){var n,r=t,x=e.x,i=e.y,u=-1/0;do{if(i<=r.y&&i>=r.next.y&&r.next.y!==r.y){var o=r.x+(i-r.y)*(r.next.x-r.x)/(r.next.y-r.y);if(o<=x&&o>u&&(u=o,n=r.x<r.next.x?r:r.next,o===x))return n}r=r.next}while(r!==t);if(!n)return null;var f,s=n,a=n.x,l=n.y,v=1/0;r=n;do{x>=r.x&&r.x>=a&&x!==r.x&&Z(i<l?x:u,i,a,l,i<l?u:x,i,r.x,r.y)&&(f=Math.abs(i-r.y)/(x-r.x),F(r,e)&&(f<v||f===v&&(r.x>n.x||r.x===n.x&&g(n,r)))&&(n=r,v=f)),r=r.next}while(r!==s);return n}(e,t);if(!n)return t;var r=I(n,e);return s(r,r.next),s(n,n.next)}function g(e,t){return M(e.prev,e,t.prev)<0&&M(t.next,e,e.next)<0}function b(e,t,n,r,x){return(e=1431655765&((e=858993459&((e=252645135&((e=16711935&((e=(e-n)*x|0)|e<<8))|e<<4))|e<<2))|e<<1))|(t=1431655765&((t=858993459&((t=252645135&((t=16711935&((t=(t-r)*x|0)|t<<8))|t<<4))|t<<2))|t<<1))<<1}function d(e){var t=e,n=e;do{(t.x<n.x||t.x===n.x&&t.y<n.y)&&(n=t),t=t.next}while(t!==e);return n}function Z(e,t,n,r,x,i,u,o){return(x-u)*(t-o)>=(e-u)*(i-o)&&(e-u)*(r-o)>=(n-u)*(t-o)&&(n-u)*(i-o)>=(x-u)*(r-o)}function w(e,t){return e.next.i!==t.i&&e.prev.i!==t.i&&!function(e,t){var n=e;do{if(n.i!==e.i&&n.next.i!==e.i&&n.i!==t.i&&n.next.i!==t.i&&A(n,n.next,e,t))return!0;n=n.next}while(n!==e);return!1}(e,t)&&(F(e,t)&&F(t,e)&&function(e,t){var n=e,r=!1,x=(e.x+t.x)/2,i=(e.y+t.y)/2;do{n.y>i!=n.next.y>i&&n.next.y!==n.y&&x<(n.next.x-n.x)*(i-n.y)/(n.next.y-n.y)+n.x&&(r=!r),n=n.next}while(n!==e);return r}(e,t)&&(M(e.prev,e,t.prev)||M(e,t.prev,t))||m(e,t)&&M(e.prev,e,e.next)>0&&M(t.prev,t,t.next)>0)}function M(e,t,n){return(t.y-e.y)*(n.x-t.x)-(t.x-e.x)*(n.y-t.y)}function m(e,t){return e.x===t.x&&e.y===t.y}function A(e,t,n,r){var x=z(M(e,t,n)),i=z(M(e,t,r)),u=z(M(n,r,e)),o=z(M(n,r,t));return x!==i&&u!==o||(!(0!==x||!E(e,n,t))||(!(0!==i||!E(e,r,t))||(!(0!==u||!E(n,e,r))||!(0!==o||!E(n,t,r)))))}function E(e,t,n){return t.x<=Math.max(e.x,n.x)&&t.x>=Math.min(e.x,n.x)&&t.y<=Math.max(e.y,n.y)&&t.y>=Math.min(e.y,n.y)}function z(e){return e>0?1:e<0?-1:0}function F(e,t){return M(e.prev,e,e.next)<0?M(e,t,e.next)>=0&&M(e,e.prev,t)>=0:M(e,t,e.prev)<0||M(e,e.next,t)<0}function I(e,t){var n=new _(e.i,e.x,e.y),r=new _(t.i,t.x,t.y),x=e.next,i=t.prev;return e.next=t,t.prev=e,n.next=x,x.prev=n,r.next=n,n.prev=r,i.next=r,r.prev=i,r}function P(e,t,n,r){var x=new _(e,t,n);return r?(x.next=r.next,x.prev=r,r.next.prev=x,r.next=x):(x.prev=x,x.next=x),x}function B(e){e.next.prev=e.prev,e.prev.next=e.next,e.prevZ&&(e.prevZ.nextZ=e.nextZ),e.nextZ&&(e.nextZ.prevZ=e.prevZ)}function _(e,t,n){this.i=e,this.x=t,this.y=n,this.prev=null,this.next=null,this.z=0,this.prevZ=null,this.nextZ=null,this.steiner=!1}function O(e,t,n,r){for(var x=0,i=t,u=n-r;i<n;i+=r)x+=(e[u]-e[i])*(e[i+1]+e[u+1]),u=i;return x}u.exports=o,u.exports.default=o,o.deviation=function(e,t,n,r){var x=t&&t.length,i=x?t[0]*n:e.length,u=Math.abs(O(e,0,i,n));if(x)for(var o=0,f=t.length;o<f;o++){var s=t[o]*n,a=o<f-1?t[o+1]*n:e.length;u-=Math.abs(O(e,s,a,n))}var l=0;for(o=0;o<r.length;o+=3){var v=r[o]*n,c=r[o+1]*n,h=r[o+2]*n;l+=Math.abs((e[v]-e[h])*(e[c+1]-e[v+1])-(e[v]-e[c])*(e[h+1]-e[v+1]))}return 0===u&&0===l?0:Math.abs((l-u)/u)},o.flatten=function(e){for(var t=e[0][0].length,n={vertices:[],holes:[],dimensions:t},r=0,x=0;x<e.length;x++){for(var i=0;i<e[x].length;i++)for(var u=0;u<t;u++)n.vertices.push(e[x][i][u]);x>0&&(r+=e[x-1].length,n.holes.push(r))}return n};var N=i(u.exports);const R=[],S={vertexPosition:0,indexPosition:0};function T(e,t,n,r,x){e[t+0]=n,e[t+1]=r,e[t+2]=x}function U(e,t,n,r,x,i){const u=3+x,o=e[t+0],f=e[t+1],s=R;s.length=x;for(let n=0;n<s.length;n++)s[n]=e[t+2+n];let a=i?i.vertexPosition:0,l=i?i.indexPosition:0;const v=a/u;return T(n,a,o,f,0),s.length&&n.set(s,a+3),a+=u,T(n,a,o,f,1),s.length&&n.set(s,a+3),a+=u,T(n,a,o,f,2),s.length&&n.set(s,a+3),a+=u,T(n,a,o,f,3),s.length&&n.set(s,a+3),a+=u,r[l++]=v,r[l++]=v+1,r[l++]=v+3,r[l++]=v+1,r[l++]=v+2,r[l++]=v+3,S.vertexPosition=a,S.indexPosition=l,S}function k(e,t,n,x,i,u,o,f,s,a){const l=8+f.length,v=u.length/l,c=[e[t+0],e[t+1]],h=[e[n],e[n+1]],p=r(s,[...c]),y=r(s,[...h]);function g(e,t,n){const r=Math.sqrt((t[0]-e[0])*(t[0]-e[0])+(t[1]-e[1])*(t[1]-e[1])),x=[(t[0]-e[0])/r,(t[1]-e[1])/r],i=[-x[1],x[0]],u=Math.sqrt((n[0]-e[0])*(n[0]-e[0])+(n[1]-e[1])*(n[1]-e[1])),o=[(n[0]-e[0])/u,(n[1]-e[1])/u],f=0===r||0===u?0:Math.acos((s=o[0]*x[0]+o[1]*x[1],a=-1,l=1,Math.min(Math.max(s,a),l)));var s,a,l;return o[0]*i[0]+o[1]*i[1]>0?f:2*Math.PI-f}let b=-1,d=-1;const Z=null!==i;if(null!==x){b=g(p,y,r(s,[...[e[x],e[x+1]]]))}if(Z){d=g(y,p,r(s,[...[e[i],e[i+1]]]))}return u.push(c[0],c[1],h[0],h[1],b,d,a,0),u.push(...f),u.push(c[0],c[1],h[0],h[1],b,d,a,1),u.push(...f),u.push(c[0],c[1],h[0],h[1],b,d,a,2),u.push(...f),u.push(c[0],c[1],h[0],h[1],b,d,a,3),u.push(...f),o.push(v,v+1,v+2,v+1,v+3,v+2),a+Math.sqrt((y[0]-p[0])*(y[0]-p[0])+(y[1]-p[1])*(y[1]-p[1]))}function G(e,t,n,r,x){const i=2+x;let u=t;const o=e.slice(u,u+x);u+=x;const f=e[u++];let s=0;const a=new Array(f-1);for(let t=0;t<f;t++)s+=e[u++],t<f-1&&(a[t]=s);const l=e.slice(u,u+2*s),v=N(l,a,2);for(let e=0;e<v.length;e++)r.push(v[e]+n.length/i);for(let e=0;e<l.length;e+=2)n.push(l[e],l[e+1],...o);return u+2*s}const j=self;j.onmessage=r=>{const i=r.data;switch(i.type){case t:{const e=3,t=2,n=i.customAttributesSize,r=t+n,x=new Float32Array(i.renderInstructions),u=x.length/r,o=4*u*(n+e),f=new Uint32Array(6*u),s=new Float32Array(o);let a;for(let e=0;e<x.length;e+=r)a=U(x,e,s,f,n,a);const l=Object.assign({vertexBuffer:s.buffer,indexBuffer:f.buffer,renderInstructions:x.buffer},i);j.postMessage(l,[s.buffer,f.buffer,x.buffer]);break}case n:{const e=[],t=[],n=i.customAttributesSize,r=2,u=new Float32Array(i.renderInstructions);let o=0;const f=[1,0,0,1,0,0];let s,a;for(x(f,i.renderInstructionsTransform);o<u.length;){a=Array.from(u.slice(o,o+n)),o+=n,s=u[o++];const x=o,i=o+(s-1)*r,l=u[x]===u[i]&&u[x+1]===u[i+1];let v=0;for(let n=0;n<s-1;n++){let c=null;n>0?c=o+(n-1)*r:l&&(c=i-r);let h=null;n<s-2?h=o+(n+2)*r:l&&(h=x+r),v=k(u,o+n*r,o+(n+1)*r,c,h,e,t,a,f,v)}o+=s*r}const l=Uint32Array.from(t),v=Float32Array.from(e),c=Object.assign({vertexBuffer:v.buffer,indexBuffer:l.buffer,renderInstructions:u.buffer},i);j.postMessage(c,[v.buffer,l.buffer,u.buffer]);break}case e:{const e=[],t=[],n=i.customAttributesSize,r=new Float32Array(i.renderInstructions);let x=0;for(;x<r.length;)x=G(r,x,e,t,n);const u=Uint32Array.from(t),o=Float32Array.from(e),f=Object.assign({vertexBuffer:o.buffer,indexBuffer:u.buffer,renderInstructions:r.buffer},i);j.postMessage(f,[o.buffer,u.buffer,r.buffer]);break}}};';
23626
23646
  return new Worker(typeof Blob > "u" ? "data:application/javascript;base64," + Buffer.from(r, "binary").toString("base64") : URL.createObjectURL(new Blob([r], { type: "application/javascript" })));
23627
23647
  }
23628
- class Q0 extends X0 {
23648
+ class $0 extends X0 {
23629
23649
  /**
23630
23650
  * @param {import("../../layer/Layer.js").default} layer Layer.
23631
23651
  * @param {Options} options Options.
@@ -23892,7 +23912,7 @@ class Q0 extends X0 {
23892
23912
  }), this.sourceListenKeys_ = null, super.disposeInternal();
23893
23913
  }
23894
23914
  }
23895
- const $0 = Q0, tE = 0.5;
23915
+ const Q0 = $0, tE = 0.5;
23896
23916
  class eE extends Oo {
23897
23917
  /**
23898
23918
  * @param {import("./tilecoord.js").TileCoord} tileCoord Tile coordinate.
@@ -24064,7 +24084,7 @@ class nE {
24064
24084
  P
24065
24085
  ), this.wrapsXInSource_) {
24066
24086
  let w = 1 / 0;
24067
- this.triangles_.forEach(function(b, S, M) {
24087
+ this.triangles_.forEach(function(b, T, M) {
24068
24088
  w = Math.min(
24069
24089
  w,
24070
24090
  b.source[0][0],
@@ -24077,22 +24097,22 @@ class nE {
24077
24097
  b.source[1][0],
24078
24098
  b.source[2][0]
24079
24099
  ) - w > this.sourceWorldWidth_ / 2) {
24080
- const S = [
24100
+ const T = [
24081
24101
  [b.source[0][0], b.source[0][1]],
24082
24102
  [b.source[1][0], b.source[1][1]],
24083
24103
  [b.source[2][0], b.source[2][1]]
24084
24104
  ];
24085
- S[0][0] - w > this.sourceWorldWidth_ / 2 && (S[0][0] -= this.sourceWorldWidth_), S[1][0] - w > this.sourceWorldWidth_ / 2 && (S[1][0] -= this.sourceWorldWidth_), S[2][0] - w > this.sourceWorldWidth_ / 2 && (S[2][0] -= this.sourceWorldWidth_);
24105
+ T[0][0] - w > this.sourceWorldWidth_ / 2 && (T[0][0] -= this.sourceWorldWidth_), T[1][0] - w > this.sourceWorldWidth_ / 2 && (T[1][0] -= this.sourceWorldWidth_), T[2][0] - w > this.sourceWorldWidth_ / 2 && (T[2][0] -= this.sourceWorldWidth_);
24086
24106
  const M = Math.min(
24087
- S[0][0],
24088
- S[1][0],
24089
- S[2][0]
24107
+ T[0][0],
24108
+ T[1][0],
24109
+ T[2][0]
24090
24110
  );
24091
24111
  Math.max(
24092
- S[0][0],
24093
- S[1][0],
24094
- S[2][0]
24095
- ) - M < this.sourceWorldWidth_ / 2 && (b.source = S);
24112
+ T[0][0],
24113
+ T[1][0],
24114
+ T[2][0]
24115
+ ) - M < this.sourceWorldWidth_ / 2 && (b.source = T);
24096
24116
  }
24097
24117
  });
24098
24118
  }
@@ -24299,13 +24319,13 @@ function aE(r, t, e, i, n, o, a, h, c, d, f, _) {
24299
24319
  if (_ || (m.imageSmoothingEnabled = !1), c.length === 0)
24300
24320
  return m.canvas;
24301
24321
  m.scale(e, e);
24302
- function v(S) {
24303
- return Math.round(S * e) / e;
24322
+ function v(T) {
24323
+ return Math.round(T * e) / e;
24304
24324
  }
24305
24325
  m.globalCompositeOperation = "lighter";
24306
24326
  const y = pe();
24307
- c.forEach(function(S, M, A) {
24308
- Ad(y, S.extent);
24327
+ c.forEach(function(T, M, A) {
24328
+ Ad(y, T.extent);
24309
24329
  });
24310
24330
  const E = Pt(y), C = Xe(y), P = te(
24311
24331
  Math.round(e * E / i),
@@ -24314,14 +24334,14 @@ function aE(r, t, e, i, n, o, a, h, c, d, f, _) {
24314
24334
  );
24315
24335
  _ || (P.imageSmoothingEnabled = !1);
24316
24336
  const w = e / i;
24317
- c.forEach(function(S, M, A) {
24318
- const I = S.extent[0] - y[0], z = -(S.extent[3] - y[3]), Z = Pt(S.extent), X = Xe(S.extent);
24319
- S.image.width > 0 && S.image.height > 0 && P.drawImage(
24320
- S.image,
24337
+ c.forEach(function(T, M, A) {
24338
+ const I = T.extent[0] - y[0], z = -(T.extent[3] - y[3]), Z = Pt(T.extent), X = Xe(T.extent);
24339
+ T.image.width > 0 && T.image.height > 0 && P.drawImage(
24340
+ T.image,
24321
24341
  d,
24322
24342
  d,
24323
- S.image.width - 2 * d,
24324
- S.image.height - 2 * d,
24343
+ T.image.width - 2 * d,
24344
+ T.image.height - 2 * d,
24325
24345
  I * w,
24326
24346
  z * w,
24327
24347
  Z * w,
@@ -24329,8 +24349,8 @@ function aE(r, t, e, i, n, o, a, h, c, d, f, _) {
24329
24349
  );
24330
24350
  });
24331
24351
  const b = fn(a);
24332
- return h.getTriangles().forEach(function(S, M, A) {
24333
- const I = S.source, z = S.target;
24352
+ return h.getTriangles().forEach(function(T, M, A) {
24353
+ const I = T.source, z = T.target;
24334
24354
  let Z = I[0][0], X = I[0][1], V = I[1][0], K = I[1][1], it = I[2][0], gt = I[2][1];
24335
24355
  const H = v((z[0][0] - b[0]) / o), W = v(
24336
24356
  -(z[0][1] - b[1]) / o
@@ -24345,8 +24365,8 @@ function aE(r, t, e, i, n, o, a, h, c, d, f, _) {
24345
24365
  [it, gt, 0, 0, vt - H],
24346
24366
  [0, 0, V, K, N - W],
24347
24367
  [0, 0, it, gt, U - W]
24348
- ], Q = wy(wt);
24349
- if (Q) {
24368
+ ], $ = wy(wt);
24369
+ if ($) {
24350
24370
  if (m.save(), m.beginPath(), sE() || !_) {
24351
24371
  m.moveTo(G, N);
24352
24372
  const q = 4, nt = H - G, Dt = W - N;
@@ -24362,10 +24382,10 @@ function aE(r, t, e, i, n, o, a, h, c, d, f, _) {
24362
24382
  } else
24363
24383
  m.moveTo(G, N), m.lineTo(H, W), m.lineTo(vt, U);
24364
24384
  m.clip(), m.transform(
24365
- Q[0],
24366
- Q[2],
24367
- Q[1],
24368
- Q[3],
24385
+ $[0],
24386
+ $[2],
24387
+ $[1],
24388
+ $[3],
24369
24389
  H,
24370
24390
  W
24371
24391
  ), m.translate(
@@ -24376,8 +24396,8 @@ function aE(r, t, e, i, n, o, a, h, c, d, f, _) {
24376
24396
  -i / e
24377
24397
  ), m.drawImage(P.canvas, 0, 0), m.restore();
24378
24398
  }
24379
- }), Yo(P), Xn.push(P.canvas), f && (m.save(), m.globalCompositeOperation = "source-over", m.strokeStyle = "black", m.lineWidth = 1, h.getTriangles().forEach(function(S, M, A) {
24380
- const I = S.target, z = (I[0][0] - b[0]) / o, Z = -(I[0][1] - b[1]) / o, X = (I[1][0] - b[0]) / o, V = -(I[1][1] - b[1]) / o, K = (I[2][0] - b[0]) / o, it = -(I[2][1] - b[1]) / o;
24399
+ }), Yo(P), Xn.push(P.canvas), f && (m.save(), m.globalCompositeOperation = "source-over", m.strokeStyle = "black", m.lineWidth = 1, h.getTriangles().forEach(function(T, M, A) {
24400
+ const I = T.target, z = (I[0][0] - b[0]) / o, Z = -(I[0][1] - b[1]) / o, X = (I[1][0] - b[0]) / o, V = -(I[1][1] - b[1]) / o, K = (I[2][0] - b[0]) / o, it = -(I[2][1] - b[1]) / o;
24381
24401
  m.beginPath(), m.moveTo(X, V), m.lineTo(z, Z), m.lineTo(K, it), m.closePath(), m.stroke();
24382
24402
  }), m.restore()), m.canvas;
24383
24403
  }
@@ -24422,13 +24442,13 @@ class lE extends Gf {
24422
24442
  this.state = J.EMPTY;
24423
24443
  return;
24424
24444
  }
24425
- const S = f !== void 0 ? f : tE;
24445
+ const T = f !== void 0 ? f : tE;
24426
24446
  if (this.triangulation_ = new rE(
24427
24447
  t,
24428
24448
  i,
24429
24449
  C,
24430
24450
  E,
24431
- b * S,
24451
+ b * T,
24432
24452
  w
24433
24453
  ), this.triangulation_.getTriangles().length === 0) {
24434
24454
  this.state = J.EMPTY;
@@ -25707,7 +25727,7 @@ class wE extends gh {
25707
25727
  const t = new xE().addAttribute("float a_weight").addVarying("v_weight", "float", "a_weight").addUniform("float u_size").addUniform("float u_blurSlope").setSymbolSizeExpression("vec2(u_size)").setSymbolColorExpression(
25708
25728
  "vec4(smoothstep(0., 1., (1. - length(coordsPx * 2. / v_quadSizePx)) * u_blurSlope) * v_weight)"
25709
25729
  );
25710
- return new $0(this, {
25730
+ return new Q0(this, {
25711
25731
  className: this.getClassName(),
25712
25732
  attributes: [
25713
25733
  {
@@ -25914,7 +25934,7 @@ class SE {
25914
25934
  */
25915
25935
  constructor(t) {
25916
25936
  this.minZoom = t.minZoom !== void 0 ? t.minZoom : 0, this.resolutions_ = t.resolutions, ft(
25917
- Qm(
25937
+ $m(
25918
25938
  this.resolutions_,
25919
25939
  function(n, o) {
25920
25940
  return o - n;
@@ -27208,7 +27228,7 @@ class JE extends Nf {
27208
27228
  * @protected
27209
27229
  */
27210
27230
  preRender(t, e) {
27211
- this.frameState = e, this.dispatchRenderEvent_($t.PRERENDER, t, e);
27231
+ this.frameState = e, this.dispatchRenderEvent_(Qt.PRERENDER, t, e);
27212
27232
  }
27213
27233
  /**
27214
27234
  * @param {CanvasRenderingContext2D} context Context.
@@ -27216,7 +27236,7 @@ class JE extends Nf {
27216
27236
  * @protected
27217
27237
  */
27218
27238
  postRender(t, e) {
27219
- this.dispatchRenderEvent_($t.POSTRENDER, t, e);
27239
+ this.dispatchRenderEvent_(Qt.POSTRENDER, t, e);
27220
27240
  }
27221
27241
  /**
27222
27242
  * Creates a transform for rendering to an element that will be rotated after rendering.
@@ -27251,7 +27271,7 @@ class JE extends Nf {
27251
27271
  }
27252
27272
  }
27253
27273
  const qf = JE;
27254
- class QE extends qf {
27274
+ class $E extends qf {
27255
27275
  /**
27256
27276
  * @param {LayerType} tileLayer Tile layer.
27257
27277
  */
@@ -27310,10 +27330,10 @@ class QE extends qf {
27310
27330
  _ * ((n[0] - E[0]) / P - v[1] * C[0])
27311
27331
  ), b = Math.floor(
27312
27332
  _ * ((E[1] - n[1]) / P - v[2] * C[1])
27313
- ), S = Math.round(
27333
+ ), T = Math.round(
27314
27334
  _ * d.getGutterForProjection(c.projection)
27315
27335
  );
27316
- return this.getImageData(y.getImage(), w + S, b + S);
27336
+ return this.getImageData(y.getImage(), w + T, b + T);
27317
27337
  }
27318
27338
  return null;
27319
27339
  }
@@ -27343,12 +27363,12 @@ class QE extends qf {
27343
27363
  renderFrame(t, e) {
27344
27364
  const i = t.layerStatesArray[t.layerIndex], n = t.viewState, o = n.projection, a = n.resolution, h = n.center, c = n.rotation, d = t.pixelRatio, f = this.getLayer(), _ = f.getSource(), m = _.getRevision(), v = _.getTileGridForProjection(o), y = v.getZForResolution(a, _.zDirection), E = v.getResolution(y);
27345
27365
  let C = t.extent;
27346
- const P = t.viewState.resolution, w = _.getTilePixelRatio(d), b = Math.round(Pt(C) / P * d), S = Math.round(Xe(C) / P * d), M = i.extent && nn(i.extent);
27366
+ const P = t.viewState.resolution, w = _.getTilePixelRatio(d), b = Math.round(Pt(C) / P * d), T = Math.round(Xe(C) / P * d), M = i.extent && nn(i.extent);
27347
27367
  M && (C = Sr(
27348
27368
  C,
27349
27369
  nn(i.extent)
27350
27370
  ));
27351
- const A = E * b / 2 / w, I = E * S / 2 / w, z = [
27371
+ const A = E * b / 2 / w, I = E * T / 2 / w, z = [
27352
27372
  h[0] - A,
27353
27373
  h[1] - I,
27354
27374
  h[0] + A,
@@ -27368,10 +27388,10 @@ class QE extends qf {
27368
27388
  t.size
27369
27389
  ) : void 0;
27370
27390
  for (let wt = Z.minX; wt <= Z.maxX; ++wt)
27371
- for (let Q = Z.minY; Q <= Z.maxY; ++Q) {
27372
- if (c && !v.tileCoordIntersectsViewport([y, wt, Q], gt))
27391
+ for (let $ = Z.minY; $ <= Z.maxY; ++$) {
27392
+ if (c && !v.tileCoordIntersectsViewport([y, wt, $], gt))
27373
27393
  continue;
27374
- const q = this.getTile(y, wt, Q, t);
27394
+ const q = this.getTile(y, wt, $, t);
27375
27395
  if (this.isDrawableTile(q)) {
27376
27396
  const Ct = lt(this);
27377
27397
  if (q.getState() == J.LOADED) {
@@ -27404,7 +27424,7 @@ class QE extends qf {
27404
27424
  1 / d,
27405
27425
  c,
27406
27426
  -b / 2,
27407
- -S / 2
27427
+ -T / 2
27408
27428
  );
27409
27429
  const W = qd(this.pixelTransform);
27410
27430
  this.useContainer(e, W, this.getBackground(t));
@@ -27412,47 +27432,47 @@ class QE extends qf {
27412
27432
  jo(this.inversePixelTransform, this.pixelTransform), Ke(
27413
27433
  this.tempTransform,
27414
27434
  b / 2,
27415
- S / 2,
27435
+ T / 2,
27416
27436
  H,
27417
27437
  H,
27418
27438
  0,
27419
27439
  -b / 2,
27420
- -S / 2
27421
- ), N.width != b || N.height != S ? (N.width = b, N.height = S) : this.containerReused || G.clearRect(0, 0, b, S), M && this.clipUnrotated(G, t, M), _.getInterpolate() || (G.imageSmoothingEnabled = !1), this.preRender(G, t), this.renderedTiles.length = 0;
27440
+ -T / 2
27441
+ ), N.width != b || N.height != T ? (N.width = b, N.height = T) : this.containerReused || G.clearRect(0, 0, b, T), M && this.clipUnrotated(G, t, M), _.getInterpolate() || (G.imageSmoothingEnabled = !1), this.preRender(G, t), this.renderedTiles.length = 0;
27422
27442
  let vt = Object.keys(X).map(Number);
27423
27443
  vt.sort(Gi);
27424
27444
  let U, rt, F;
27425
27445
  i.opacity === 1 && (!this.containerReused || _.getOpaque(t.viewState.projection)) ? vt = vt.reverse() : (U = [], rt = []);
27426
27446
  for (let wt = vt.length - 1; wt >= 0; --wt) {
27427
- const Q = vt[wt], q = _.getTilePixelSize(
27428
- Q,
27447
+ const $ = vt[wt], q = _.getTilePixelSize(
27448
+ $,
27429
27449
  d,
27430
27450
  o
27431
- ), Dt = v.getResolution(Q) / E, Ct = q[0] * Dt * H, me = q[1] * Dt * H, Ie = v.getTileCoordForCoordAndZ(
27451
+ ), Dt = v.getResolution($) / E, Ct = q[0] * Dt * H, me = q[1] * Dt * H, Ie = v.getTileCoordForCoordAndZ(
27432
27452
  fn(z),
27433
- Q
27453
+ $
27434
27454
  ), yi = v.getTileCoordExtent(Ie), ye = Nt(this.tempTransform, [
27435
27455
  w * (yi[0] - z[0]) / E,
27436
27456
  w * (z[3] - yi[3]) / E
27437
- ]), vi = w * _.getGutterForProjection(o), De = X[Q];
27457
+ ]), vi = w * _.getGutterForProjection(o), De = X[$];
27438
27458
  for (const xi in De) {
27439
27459
  const Le = (
27440
27460
  /** @type {import("../../ImageTile.js").default} */
27441
27461
  De[xi]
27442
- ), Ei = Le.tileCoord, Ve = Ie[1] - Ei[1], _n = Math.round(ye[0] - (Ve - 1) * Ct), qe = Ie[2] - Ei[2], Wi = Math.round(ye[1] - (qe - 1) * me), Xt = Math.round(ye[0] - Ve * Ct), ee = Math.round(ye[1] - qe * me), de = _n - Xt, be = Wi - ee, Oe = y === Q, Fe = Oe && Le.getAlpha(lt(this), t.time) !== 1;
27462
+ ), Ei = Le.tileCoord, Ve = Ie[1] - Ei[1], _n = Math.round(ye[0] - (Ve - 1) * Ct), qe = Ie[2] - Ei[2], Wi = Math.round(ye[1] - (qe - 1) * me), Xt = Math.round(ye[0] - Ve * Ct), ee = Math.round(ye[1] - qe * me), de = _n - Xt, be = Wi - ee, Oe = y === $, Fe = Oe && Le.getAlpha(lt(this), t.time) !== 1;
27443
27463
  let Ce = !1;
27444
27464
  if (!Fe)
27445
27465
  if (U) {
27446
27466
  F = [Xt, ee, Xt + de, ee, Xt + de, ee + be, Xt, ee + be];
27447
27467
  for (let wi = 0, Hi = U.length; wi < Hi; ++wi)
27448
- if (y !== Q && Q < rt[wi]) {
27468
+ if (y !== $ && $ < rt[wi]) {
27449
27469
  const Ut = U[wi];
27450
27470
  ce(
27451
27471
  [Xt, ee, Xt + de, ee + be],
27452
27472
  [Ut[0], Ut[3], Ut[4], Ut[7]]
27453
27473
  ) && (Ce || (G.save(), Ce = !0), G.beginPath(), G.moveTo(F[0], F[1]), G.lineTo(F[2], F[3]), G.lineTo(F[4], F[5]), G.lineTo(F[6], F[7]), G.moveTo(Ut[6], Ut[7]), G.lineTo(Ut[4], Ut[5]), G.lineTo(Ut[2], Ut[3]), G.lineTo(Ut[0], Ut[1]), G.clip());
27454
27474
  }
27455
- U.push(F), rt.push(Q);
27475
+ U.push(F), rt.push($);
27456
27476
  } else
27457
27477
  G.clearRect(Xt, ee, de, be);
27458
27478
  this.drawTileImage(
@@ -27578,20 +27598,20 @@ class QE extends qf {
27578
27598
  y,
27579
27599
  t.size
27580
27600
  ) : void 0;
27581
- let C = 0, P, w, b, S, M, A;
27601
+ let C = 0, P, w, b, T, M, A;
27582
27602
  for (A = v; A <= h; ++A)
27583
- for (w = i.getTileRangeForExtentAndZ(a, A, w), b = i.getResolution(A), S = w.minX; S <= w.maxX; ++S)
27603
+ for (w = i.getTileRangeForExtentAndZ(a, A, w), b = i.getResolution(A), T = w.minX; T <= w.maxX; ++T)
27584
27604
  for (M = w.minY; M <= w.maxY; ++M)
27585
- y && !i.tileCoordIntersectsViewport([A, S, M], E) || (h - A <= c ? (++C, P = e.getTile(A, S, M, n, o), P.getState() == J.IDLE && (_[P.getKey()] = !0, m.isKeyQueued(P.getKey()) || m.enqueue([
27605
+ y && !i.tileCoordIntersectsViewport([A, T, M], E) || (h - A <= c ? (++C, P = e.getTile(A, T, M, n, o), P.getState() == J.IDLE && (_[P.getKey()] = !0, m.isKeyQueued(P.getKey()) || m.enqueue([
27586
27606
  P,
27587
27607
  f,
27588
27608
  i.getTileCoordCenter(P.tileCoord),
27589
27609
  b
27590
- ])), d !== void 0 && d(P)) : e.useTile(A, S, M, o));
27610
+ ])), d !== void 0 && d(P)) : e.useTile(A, T, M, o));
27591
27611
  e.updateCacheSize(C, o);
27592
27612
  }
27593
27613
  }
27594
- const $E = QE;
27614
+ const QE = $E;
27595
27615
  class tw extends VE {
27596
27616
  /**
27597
27617
  * @param {import("./BaseTile.js").Options<TileSourceType>} [options] Tile layer options.
@@ -27600,7 +27620,7 @@ class tw extends VE {
27600
27620
  super(t);
27601
27621
  }
27602
27622
  createRenderer() {
27603
- return new $E(this);
27623
+ return new QE(this);
27604
27624
  }
27605
27625
  }
27606
27626
  const ew = tw;
@@ -28588,7 +28608,7 @@ function aw(r) {
28588
28608
  };
28589
28609
  }
28590
28610
  const lw = xh;
28591
- class mo extends Qd {
28611
+ class mo extends $d {
28592
28612
  /**
28593
28613
  * @param {Array<Geometry>} [geometries] Geometries.
28594
28614
  */
@@ -29140,7 +29160,7 @@ function js(r) {
29140
29160
  return r !== null ? r : null;
29141
29161
  }
29142
29162
  const dw = uw;
29143
- function Qf(r, t, e, i, n, o, a) {
29163
+ function $f(r, t, e, i, n, o, a) {
29144
29164
  let h, c;
29145
29165
  const d = (e - t) / i;
29146
29166
  if (d === 1)
@@ -29226,7 +29246,7 @@ function fw(r, t, e, i, n, o, a) {
29226
29246
  }
29227
29247
  return null;
29228
29248
  }
29229
- function $f(r, t, e, i) {
29249
+ function Qf(r, t, e, i) {
29230
29250
  let n = r[t], o = r[t + 1], a = 0;
29231
29251
  for (let h = t + i; h < e; h += i) {
29232
29252
  const c = r[h], d = r[h + 1];
@@ -29368,7 +29388,7 @@ class yo extends gn {
29368
29388
  * @api
29369
29389
  */
29370
29390
  getCoordinateAt(t, e) {
29371
- return Qf(
29391
+ return $f(
29372
29392
  this.flatCoordinates,
29373
29393
  0,
29374
29394
  this.flatCoordinates.length,
@@ -29384,7 +29404,7 @@ class yo extends gn {
29384
29404
  * @api
29385
29405
  */
29386
29406
  getLength() {
29387
- return $f(
29407
+ return Qf(
29388
29408
  this.flatCoordinates,
29389
29409
  0,
29390
29410
  this.flatCoordinates.length,
@@ -29629,7 +29649,7 @@ class vo extends gn {
29629
29649
  let i = 0;
29630
29650
  const n = this.ends_, o = this.stride;
29631
29651
  for (let a = 0, h = n.length; a < h; ++a) {
29632
- const c = n[a], d = Qf(
29652
+ const c = n[a], d = $f(
29633
29653
  e,
29634
29654
  i,
29635
29655
  c,
@@ -30910,13 +30930,13 @@ class Iw extends eg {
30910
30930
  n || Gr
30911
30931
  );
30912
30932
  const o = e.getLineCap();
30913
- i.lineCap = o !== void 0 ? o : Qn;
30933
+ i.lineCap = o !== void 0 ? o : $n;
30914
30934
  const a = e.getLineDash();
30915
30935
  i.lineDash = a ? a.slice() : fi;
30916
30936
  const h = e.getLineDashOffset();
30917
30937
  i.lineDashOffset = h || gi;
30918
30938
  const c = e.getLineJoin();
30919
- i.lineJoin = c !== void 0 ? c : $n;
30939
+ i.lineJoin = c !== void 0 ? c : Qn;
30920
30940
  const d = e.getWidth();
30921
30941
  i.lineWidth = d !== void 0 ? d : Zr;
30922
30942
  const f = e.getMiterLimit();
@@ -31372,7 +31392,7 @@ class Nw extends is {
31372
31392
  if (t !== 0) {
31373
31393
  const e = this.coordinates;
31374
31394
  for (let i = 0, n = e.length; i < n; ++i)
31375
- e[i] = $i(e[i], t);
31395
+ e[i] = Qi(e[i], t);
31376
31396
  }
31377
31397
  return super.finish();
31378
31398
  }
@@ -31410,8 +31430,8 @@ function Bw(r, t, e, i, n) {
31410
31430
  function Gw(r, t, e, i, n) {
31411
31431
  let o = e, a = e, h = 0, c = 0, d = e, f, _, m, v, y, E, C, P, w, b;
31412
31432
  for (_ = e; _ < i; _ += n) {
31413
- const S = t[_], M = t[_ + 1];
31414
- y !== void 0 && (w = S - y, b = M - E, v = Math.sqrt(w * w + b * b), C !== void 0 && (c += m, f = Math.acos((C * w + P * b) / (m * v)), f > r && (c > h && (h = c, o = d, a = _), c = 0, d = _ - n)), m = v, C = w, P = b), y = S, E = M;
31433
+ const T = t[_], M = t[_ + 1];
31434
+ y !== void 0 && (w = T - y, b = M - E, v = Math.sqrt(w * w + b * b), C !== void 0 && (c += m, f = Math.acos((C * w + P * b) / (m * v)), f > r && (c > h && (h = c, o = d, a = _), c = 0, d = _ - n)), m = v, C = w, P = b), y = T, E = M;
31415
31435
  }
31416
31436
  return c += v, c > h ? [d, _] : [o, a];
31417
31437
  }
@@ -31490,20 +31510,20 @@ class Uw extends is {
31490
31510
  f
31491
31511
  ) : P = [d.slice(y, _[E])];
31492
31512
  for (let w = 0, b = P.length; w < b; ++w) {
31493
- const S = P[w];
31494
- let M = 0, A = S.length;
31513
+ const T = P[w];
31514
+ let M = 0, A = T.length;
31495
31515
  if (v == null) {
31496
31516
  const z = Gw(
31497
31517
  o.maxAngle,
31498
- S,
31518
+ T,
31499
31519
  0,
31500
- S.length,
31520
+ T.length,
31501
31521
  2
31502
31522
  );
31503
31523
  M = z[0], A = z[1];
31504
31524
  }
31505
31525
  for (let z = M; z < A; z += f)
31506
- a.push(S[z], S[z + 1]);
31526
+ a.push(T[z], T[z + 1]);
31507
31527
  const I = a.length;
31508
31528
  y = _[E], this.drawChars_(h, I), h = I;
31509
31529
  }
@@ -31552,8 +31572,8 @@ class Uw extends is {
31552
31572
  if (_ && (m - h) / 2 !== d.length / f) {
31553
31573
  let P = h / 2;
31554
31574
  _ = _.filter((w, b) => {
31555
- const S = a[(P + b) * 2] === d[b * f] && a[(P + b) * 2 + 1] === d[b * f + 1];
31556
- return S || --P, S;
31575
+ const T = a[(P + b) * 2] === d[b * f] && a[(P + b) * 2 + 1] === d[b * f + 1];
31576
+ return T || --P, T;
31557
31577
  });
31558
31578
  }
31559
31579
  this.saveTextStates_(), (o.backgroundFill || o.backgroundStroke) && (this.setFillStrokeStyle(
@@ -31562,8 +31582,8 @@ class Uw extends is {
31562
31582
  ), o.backgroundFill && this.updateFillStyle(this.state, this.createFill), o.backgroundStroke && (this.updateStrokeStyle(this.state, this.applyStroke), this.hitDetectionInstructions.push(this.createStroke(this.state)))), this.beginGeometry(t, e);
31563
31583
  let v = o.padding;
31564
31584
  if (v != sn && (o.scale[0] < 0 || o.scale[1] < 0)) {
31565
- let P = o.padding[0], w = o.padding[1], b = o.padding[2], S = o.padding[3];
31566
- o.scale[0] < 0 && (w = -w, S = -S), o.scale[1] < 0 && (P = -P, b = -b), v = [P, w, b, S];
31585
+ let P = o.padding[0], w = o.padding[1], b = o.padding[2], T = o.padding[3];
31586
+ o.scale[0] < 0 && (w = -w, T = -T), o.scale[1] < 0 && (P = -P, b = -b), v = [P, w, b, T];
31567
31587
  }
31568
31588
  const y = this.pixelRatio;
31569
31589
  this.instructions.push([
@@ -31716,7 +31736,7 @@ class Uw extends is {
31716
31736
  o = this.textStrokeState_, o || (o = /** @type {import("../canvas.js").StrokeState} */
31717
31737
  {}, this.textStrokeState_ = o);
31718
31738
  const y = h.getLineDash(), E = h.getLineDashOffset(), C = h.getWidth(), P = h.getMiterLimit();
31719
- o.lineCap = h.getLineCap() || Qn, o.lineDash = y ? y.slice() : fi, o.lineDashOffset = E === void 0 ? gi : E, o.lineJoin = h.getLineJoin() || $n, o.lineWidth = C === void 0 ? Zr : C, o.miterLimit = P === void 0 ? Br : P, o.strokeStyle = He(
31739
+ o.lineCap = h.getLineCap() || $n, o.lineDash = y ? y.slice() : fi, o.lineDashOffset = E === void 0 ? gi : E, o.lineJoin = h.getLineJoin() || Qn, o.lineWidth = C === void 0 ? Zr : C, o.miterLimit = P === void 0 ? Br : P, o.strokeStyle = He(
31720
31740
  h.getColor() || Gr
31721
31741
  );
31722
31742
  }
@@ -31796,23 +31816,23 @@ function Ww(r, t, e, i, n, o, a, h, c, d, f, _) {
31796
31816
  w();
31797
31817
  while (t < e - i && P + C < o);
31798
31818
  let b = C === 0 ? 0 : (o - P) / C;
31799
- const S = ge(y, m, b), M = ge(E, v, b), A = t - i, I = P, z = o + h * c(d, n, f);
31819
+ const T = ge(y, m, b), M = ge(E, v, b), A = t - i, I = P, z = o + h * c(d, n, f);
31800
31820
  for (; t < e - i && P + C < z; )
31801
31821
  w();
31802
31822
  b = C === 0 ? 0 : (z - P) / C;
31803
31823
  const Z = ge(y, m, b), X = ge(E, v, b);
31804
31824
  let V;
31805
31825
  if (_) {
31806
- const W = [S, M, Z, X];
31826
+ const W = [T, M, Z, X];
31807
31827
  Jd(W, 0, 4, 2, _, W, W), V = W[0] > W[2];
31808
31828
  } else
31809
- V = S > Z;
31829
+ V = T > Z;
31810
31830
  const K = Math.PI, it = [], gt = A + i === t;
31811
31831
  t = A, C = 0, P = I, m = r[t], v = r[t + 1];
31812
31832
  let H;
31813
31833
  if (gt) {
31814
31834
  w(), H = Math.atan2(v - E, m - y), V && (H += H > 0 ? -K : K);
31815
- const W = (Z + S) / 2, G = (X + M) / 2;
31835
+ const W = (Z + T) / 2, G = (X + M) / 2;
31816
31836
  return it[0] = [W, G, (z - o) / 2, H, n], it;
31817
31837
  }
31818
31838
  n = n.replace(/\n/g, " ");
@@ -31820,15 +31840,15 @@ function Ww(r, t, e, i, n, o, a, h, c, d, f, _) {
31820
31840
  w();
31821
31841
  let N = Math.atan2(v - E, m - y);
31822
31842
  if (V && (N += N > 0 ? -K : K), H !== void 0) {
31823
- let Q = N - H;
31824
- if (Q += Q > K ? -2 * K : Q < -K ? 2 * K : 0, Math.abs(Q) > a)
31843
+ let $ = N - H;
31844
+ if ($ += $ > K ? -2 * K : $ < -K ? 2 * K : 0, Math.abs($) > a)
31825
31845
  return null;
31826
31846
  }
31827
31847
  H = N;
31828
31848
  const vt = W;
31829
31849
  let U = 0;
31830
31850
  for (; W < G; ++W) {
31831
- const Q = V ? G - W - 1 : W, q = h * c(d, n[Q], f);
31851
+ const $ = V ? G - W - 1 : W, q = h * c(d, n[$], f);
31832
31852
  if (t + i < e && P + C < o + U + q / 2)
31833
31853
  break;
31834
31854
  U += q;
@@ -31889,21 +31909,21 @@ class Xw {
31889
31909
  `).reduce(Hw, []), { width: E, height: C, widths: P, heights: w, lineWidths: b } = Gv(
31890
31910
  c,
31891
31911
  y
31892
- ), S = E + v, M = [], A = (S + 2) * f[0], I = (C + v) * f[1], z = {
31912
+ ), T = E + v, M = [], A = (T + 2) * f[0], I = (C + v) * f[1], z = {
31893
31913
  width: A < 0 ? Math.floor(A) : Math.ceil(A),
31894
31914
  height: I < 0 ? Math.floor(I) : Math.ceil(I),
31895
31915
  contextInstructions: M
31896
31916
  };
31897
31917
  (f[0] != 1 || f[1] != 1) && M.push("scale", f), n && (M.push("strokeStyle", a.strokeStyle), M.push("lineWidth", v), M.push("lineCap", a.lineCap), M.push("lineJoin", a.lineJoin), M.push("miterLimit", a.miterLimit), M.push("setLineDash", [a.lineDash]), M.push("lineDashOffset", a.lineDashOffset)), i && M.push("fillStyle", h.fillStyle), M.push("textBaseline", "middle"), M.push("textAlign", "center");
31898
31918
  const Z = 0.5 - m;
31899
- let X = m * S + Z * v;
31919
+ let X = m * T + Z * v;
31900
31920
  const V = [], K = [];
31901
31921
  let it = 0, gt = 0, H = 0, W = 0, G;
31902
31922
  for (let N = 0, vt = y.length; N < vt; N += 2) {
31903
31923
  const U = y[N];
31904
31924
  if (U === `
31905
31925
  `) {
31906
- gt += it, it = 0, X = m * S + Z * v, ++W;
31926
+ gt += it, it = 0, X = m * T + Z * v, ++W;
31907
31927
  continue;
31908
31928
  }
31909
31929
  const rt = y[N + 1] || c.font;
@@ -31957,7 +31977,7 @@ class Xw {
31957
31977
  calculateImageOrLabelDimensions_(t, e, i, n, o, a, h, c, d, f, _, m, v, y, E, C) {
31958
31978
  h *= m[0], c *= m[1];
31959
31979
  let P = i - h, w = n - c;
31960
- const b = o + d > t ? t - d : o, S = a + f > e ? e - f : a, M = y[3] + b * m[0] + y[1], A = y[0] + S * m[1] + y[2], I = P - y[3], z = w - y[0];
31980
+ const b = o + d > t ? t - d : o, T = a + f > e ? e - f : a, M = y[3] + b * m[0] + y[1], A = y[0] + T * m[1] + y[2], I = P - y[3], z = w - y[0];
31961
31981
  (E || _ !== 0) && (Ai[0] = I, Ii[0] = I, Ai[1] = z, ii[1] = z, ii[0] = I + M, ni[0] = ii[0], ni[1] = z + A, Ii[1] = ni[1]);
31962
31982
  let Z;
31963
31983
  return _ !== 0 ? (Z = Ke(
@@ -31985,7 +32005,7 @@ class Xw {
31985
32005
  drawImageX: P,
31986
32006
  drawImageY: w,
31987
32007
  drawImageW: b,
31988
- drawImageH: S,
32008
+ drawImageH: T,
31989
32009
  originX: d,
31990
32010
  originY: f,
31991
32011
  declutterBox: {
@@ -32109,7 +32129,7 @@ class Xw {
32109
32129
  ), Wy(this.renderedTransform_, i));
32110
32130
  let f = 0;
32111
32131
  const _ = n.length;
32112
- let m = 0, v, y, E, C, P, w, b, S, M, A, I, z, Z = 0, X = 0, V = null, K = null;
32132
+ let m = 0, v, y, E, C, P, w, b, T, M, A, I, z, Z = 0, X = 0, V = null, K = null;
32113
32133
  const it = this.coordinateCache_, gt = this.viewRotation_, H = Math.round(Math.atan2(-i[1], i[0]) * 1e12) / 1e12, W = (
32114
32134
  /** @type {import("../../render.js").State} */
32115
32135
  {
@@ -32138,8 +32158,8 @@ class Xw {
32138
32158
  case tt.CIRCLE:
32139
32159
  m = /** @type {number} */
32140
32160
  F[1];
32141
- const Q = d[m], q = d[m + 1], nt = d[m + 2], Dt = d[m + 3], Ct = nt - Q, me = Dt - q, Ie = Math.sqrt(Ct * Ct + me * me);
32142
- t.moveTo(Q + Ie, q), t.arc(Q, q, Ie, 0, 2 * Math.PI, !0), ++f;
32161
+ const $ = d[m], q = d[m + 1], nt = d[m + 2], Dt = d[m + 3], Ct = nt - $, me = Dt - q, Ie = Math.sqrt(Ct * Ct + me * me);
32162
+ t.moveTo($ + Ie, q), t.arc($, q, Ie, 0, 2 * Math.PI, !0), ++f;
32143
32163
  break;
32144
32164
  case tt.CLOSE_PATH:
32145
32165
  t.closePath(), ++f;
@@ -32158,7 +32178,7 @@ class Xw {
32158
32178
  case tt.DRAW_IMAGE:
32159
32179
  m = /** @type {number} */
32160
32180
  F[1], v = /** @type {number} */
32161
- F[2], S = /** @type {HTMLCanvasElement|HTMLVideoElement|HTMLImageElement} */
32181
+ F[2], T = /** @type {HTMLCanvasElement|HTMLVideoElement|HTMLImageElement} */
32162
32182
  F[3], y = /** @type {number} */
32163
32183
  F[4], E = /** @type {number} */
32164
32184
  F[5];
@@ -32198,7 +32218,7 @@ class Xw {
32198
32218
  /** @type {import("../canvas.js").DeclutterImageWithText} */
32199
32219
  F[15]
32200
32220
  );
32201
- if (!S && F.length >= 20) {
32221
+ if (!T && F.length >= 20) {
32202
32222
  M = /** @type {string} */
32203
32223
  F[19], A = /** @type {string} */
32204
32224
  F[20], I = /** @type {string} */
@@ -32210,7 +32230,7 @@ class Xw {
32210
32230
  I,
32211
32231
  z
32212
32232
  );
32213
- S = ie.label, F[3] = S;
32233
+ T = ie.label, F[3] = T;
32214
32234
  const Ti = (
32215
32235
  /** @type {number} */
32216
32236
  F[23]
@@ -32220,7 +32240,7 @@ class Xw {
32220
32240
  /** @type {number} */
32221
32241
  F[24]
32222
32242
  );
32223
- E = (ie.anchorY - se) * this.pixelRatio, F[5] = E, xi = S.height, F[6] = xi, Xt = S.width, F[13] = Xt;
32243
+ E = (ie.anchorY - se) * this.pixelRatio, F[5] = E, xi = T.height, F[6] = xi, Xt = T.width, F[13] = Xt;
32224
32244
  }
32225
32245
  let be;
32226
32246
  F.length > 25 && (be = /** @type {number} */
@@ -32235,8 +32255,8 @@ class Xw {
32235
32255
  if (be && be[wi++] < Xt / this.pixelRatio)
32236
32256
  continue;
32237
32257
  const ie = this.calculateImageOrLabelDimensions_(
32238
- S.width,
32239
- S.height,
32258
+ T.width,
32259
+ T.height,
32240
32260
  d[m],
32241
32261
  d[m + 1],
32242
32262
  Xt,
@@ -32254,7 +32274,7 @@ class Xw {
32254
32274
  ), Ti = [
32255
32275
  t,
32256
32276
  e,
32257
- S,
32277
+ T,
32258
32278
  ie,
32259
32279
  Le,
32260
32280
  Fe ? (
@@ -32338,7 +32358,7 @@ class Xw {
32338
32358
  ];
32339
32359
  let Ci;
32340
32360
  Li in this.widths_ ? Ci = this.widths_[Li] : (Ci = {}, this.widths_[Li] = Ci);
32341
- const os = $f(d, Hi, Ut, 2), as = Math.abs(bi[0]) * cu(Li, M, Ci);
32361
+ const os = Qf(d, Hi, Ut, 2), as = Math.abs(bi[0]) * cu(Li, M, Ci);
32342
32362
  if (ns || as <= os) {
32343
32363
  const ie = this.textStates[A].textAlign, Ti = (os - as) * Ka(M, ie), se = Ww(
32344
32364
  d,
@@ -32635,18 +32655,18 @@ class Yw {
32635
32655
  }
32636
32656
  const E = Object.keys(this.executorsByZIndex_).map(Number);
32637
32657
  E.sort(Gi);
32638
- let C, P, w, b, S;
32658
+ let C, P, w, b, T;
32639
32659
  for (C = E.length - 1; C >= 0; --C) {
32640
32660
  const M = E[C].toString();
32641
32661
  for (w = this.executorsByZIndex_[M], P = Ya.length - 1; P >= 0; --P)
32642
- if (v = Ya[P], b = w[v], b !== void 0 && (S = b.executeHitDetection(
32662
+ if (v = Ya[P], b = w[v], b !== void 0 && (T = b.executeHitDetection(
32643
32663
  f,
32644
32664
  c,
32645
32665
  i,
32646
32666
  y,
32647
32667
  _
32648
- ), S))
32649
- return S;
32668
+ ), T))
32669
+ return T;
32650
32670
  }
32651
32671
  }
32652
32672
  /**
@@ -32873,7 +32893,7 @@ class qw extends eg {
32873
32893
  )), !!ce(this.extent_, t.getExtent())) {
32874
32894
  if (this.fillState_ || this.strokeState_) {
32875
32895
  this.fillState_ && this.setContextFillState_(this.fillState_), this.strokeState_ && this.setContextStrokeState_(this.strokeState_);
32876
- const e = $y(
32896
+ const e = Qy(
32877
32897
  t,
32878
32898
  this.transform_,
32879
32899
  this.pixelCoordinates_
@@ -33208,10 +33228,10 @@ class qw extends eg {
33208
33228
  else {
33209
33229
  const i = e.getColor(), n = e.getLineCap(), o = e.getLineDash(), a = e.getLineDashOffset(), h = e.getLineJoin(), c = e.getWidth(), d = e.getMiterLimit(), f = o || fi;
33210
33230
  this.strokeState_ = {
33211
- lineCap: n !== void 0 ? n : Qn,
33231
+ lineCap: n !== void 0 ? n : $n,
33212
33232
  lineDash: this.pixelRatio_ === 1 ? f : f.map((_) => _ * this.pixelRatio_),
33213
33233
  lineDashOffset: (a || gi) * this.pixelRatio_,
33214
- lineJoin: h !== void 0 ? h : $n,
33234
+ lineJoin: h !== void 0 ? h : Qn,
33215
33235
  lineWidth: (c !== void 0 ? c : Zr) * this.pixelRatio_,
33216
33236
  miterLimit: d !== void 0 ? d : Br,
33217
33237
  strokeStyle: He(
@@ -33267,10 +33287,10 @@ class qw extends eg {
33267
33287
  else {
33268
33288
  const v = i.getColor(), y = i.getLineCap(), E = i.getLineDash(), C = i.getLineDashOffset(), P = i.getLineJoin(), w = i.getWidth(), b = i.getMiterLimit();
33269
33289
  this.textStrokeState_ = {
33270
- lineCap: y !== void 0 ? y : Qn,
33290
+ lineCap: y !== void 0 ? y : $n,
33271
33291
  lineDash: E || fi,
33272
33292
  lineDashOffset: C || gi,
33273
- lineJoin: P !== void 0 ? P : $n,
33293
+ lineJoin: P !== void 0 ? P : Qn,
33274
33294
  lineWidth: w !== void 0 ? w : Zr,
33275
33295
  miterLimit: b !== void 0 ? b : Br,
33276
33296
  strokeStyle: He(
@@ -33291,7 +33311,7 @@ class qw extends eg {
33291
33311
  }
33292
33312
  }
33293
33313
  const Jw = qw, Ze = 0.5;
33294
- function Qw(r, t, e, i, n, o, a) {
33314
+ function $w(r, t, e, i, n, o, a) {
33295
33315
  const h = r[0] * Ze, c = r[1] * Ze, d = te(h, c);
33296
33316
  d.imageSmoothingEnabled = !1;
33297
33317
  const f = d.canvas, _ = new Jw(
@@ -33368,17 +33388,17 @@ function Qw(r, t, e, i, n, o, a) {
33368
33388
  for (let C = 0, P = E.length; C < P; ++C) {
33369
33389
  const w = y[E[C]];
33370
33390
  for (const b in w) {
33371
- const S = w[b];
33372
- for (let M = 0, A = S.length; M < A; M += 2) {
33373
- _.setStyle(S[M + 1]);
33391
+ const T = w[b];
33392
+ for (let M = 0, A = T.length; M < A; M += 2) {
33393
+ _.setStyle(T[M + 1]);
33374
33394
  for (let I = 0, z = t.length; I < z; ++I)
33375
- _.setTransform(t[I]), _.drawGeometry(S[M]);
33395
+ _.setTransform(t[I]), _.drawGeometry(T[M]);
33376
33396
  }
33377
33397
  }
33378
33398
  }
33379
33399
  return d.getImageData(0, 0, f.width, f.height);
33380
33400
  }
33381
- function $w(r, t, e) {
33401
+ function Qw(r, t, e) {
33382
33402
  const i = [];
33383
33403
  if (e) {
33384
33404
  const n = Math.floor(Math.round(r[0]) * Ze), o = Math.floor(Math.round(r[1]) * Ze), a = (It(n, 0, e.width - 1) + It(o, 0, e.height - 1) * e.width) * 4, h = e.data[a], c = e.data[a + 1], f = e.data[a + 2] + 256 * (c + 256 * h), _ = Math.floor((256 * 256 * 256 - 1) / t.length);
@@ -33633,7 +33653,7 @@ class dL extends qf {
33633
33653
  * @param {import("rbush").default} [declutterTree] Declutter tree.
33634
33654
  */
33635
33655
  renderWorlds(t, e, i) {
33636
- const n = e.extent, o = e.viewState, a = o.center, h = o.resolution, c = o.projection, d = o.rotation, f = c.getExtent(), _ = this.getLayer().getSource(), m = e.pixelRatio, v = e.viewHints, y = !(v[Ht.ANIMATING] || v[Ht.INTERACTING]), E = this.compositionContext_, C = Math.round(e.size[0] * m), P = Math.round(e.size[1] * m), w = _.getWrapX() && c.canWrapX(), b = w ? Pt(f) : null, S = w ? Math.ceil((n[2] - f[2]) / b) + 1 : 1;
33656
+ const n = e.extent, o = e.viewState, a = o.center, h = o.resolution, c = o.projection, d = o.rotation, f = c.getExtent(), _ = this.getLayer().getSource(), m = e.pixelRatio, v = e.viewHints, y = !(v[Ht.ANIMATING] || v[Ht.INTERACTING]), E = this.compositionContext_, C = Math.round(e.size[0] * m), P = Math.round(e.size[1] * m), w = _.getWrapX() && c.canWrapX(), b = w ? Pt(f) : null, T = w ? Math.ceil((n[2] - f[2]) / b) + 1 : 1;
33637
33657
  let M = w ? Math.floor((n[0] - f[0]) / b) : 0;
33638
33658
  do {
33639
33659
  const A = this.getRenderTransform(
@@ -33654,7 +33674,7 @@ class dL extends qf {
33654
33674
  void 0,
33655
33675
  i
33656
33676
  );
33657
- } while (++M < S);
33677
+ } while (++M < T);
33658
33678
  }
33659
33679
  setupCompositionContext_() {
33660
33680
  if (this.opacity_ !== 1) {
@@ -33697,7 +33717,7 @@ class dL extends qf {
33697
33717
  this.useContainer(e, o, this.getBackground(t));
33698
33718
  const a = this.context, h = a.canvas, c = this.replayGroup_, d = this.declutterExecutorGroup;
33699
33719
  let f = c && !c.isEmpty() || d && !d.isEmpty();
33700
- if (!f && !(this.getLayer().hasListener($t.PRERENDER) || this.getLayer().hasListener($t.POSTRENDER)))
33720
+ if (!f && !(this.getLayer().hasListener(Qt.PRERENDER) || this.getLayer().hasListener(Qt.POSTRENDER)))
33701
33721
  return null;
33702
33722
  const _ = Math.round(t.size[0] * i), m = Math.round(t.size[1] * i);
33703
33723
  h.width != _ || h.height != m ? (h.width = _, h.height = m, h.style.transform !== o && (h.style.transform = o)) : this.containerReused || a.clearRect(0, 0, _, m), this.preRender(a, t);
@@ -33763,7 +33783,7 @@ class dL extends qf {
33763
33783
  ).slice()
33764
33784
  ), E -= C;
33765
33785
  }
33766
- this.hitDetectionImageData_ = Qw(
33786
+ this.hitDetectionImageData_ = $w(
33767
33787
  i,
33768
33788
  f,
33769
33789
  this.renderedFeatures_,
@@ -33774,7 +33794,7 @@ class dL extends qf {
33774
33794
  );
33775
33795
  }
33776
33796
  e(
33777
- $w(t, this.renderedFeatures_, this.hitDetectionImageData_)
33797
+ Qw(t, this.renderedFeatures_, this.hitDetectionImageData_)
33778
33798
  );
33779
33799
  });
33780
33800
  }
@@ -33857,17 +33877,17 @@ class dL extends qf {
33857
33877
  const C = d.center.slice(), P = zo(
33858
33878
  c,
33859
33879
  y * _
33860
- ), w = P.slice(), b = [P.slice()], S = f.getExtent();
33861
- if (i.getWrapX() && f.canWrapX() && !en(S, t.extent)) {
33862
- const H = Pt(S), W = Math.max(Pt(P) / 2, H);
33863
- P[0] = S[0] - W, P[2] = S[2] + W, Fd(C, f);
33880
+ ), w = P.slice(), b = [P.slice()], T = f.getExtent();
33881
+ if (i.getWrapX() && f.canWrapX() && !en(T, t.extent)) {
33882
+ const H = Pt(T), W = Math.max(Pt(P) / 2, H);
33883
+ P[0] = T[0] - W, P[2] = T[2] + W, Fd(C, f);
33864
33884
  const G = Od(b[0], f);
33865
- G[0] < S[0] && G[2] < S[2] ? b.push([
33885
+ G[0] < T[0] && G[2] < T[2] ? b.push([
33866
33886
  G[0] + H,
33867
33887
  G[1],
33868
33888
  G[2] + H,
33869
33889
  G[3]
33870
- ]) : G[0] > S[0] && G[2] > S[2] && b.push([
33890
+ ]) : G[0] > T[0] && G[2] > T[2] && b.push([
33871
33891
  G[0] - H,
33872
33892
  G[1],
33873
33893
  G[2] - H,
@@ -34782,10 +34802,10 @@ function XL(r, t, e, i, n, o) {
34782
34802
  }
34783
34803
  const eb = /* @__PURE__ */ Sl(EL, [["render", XL], ["__scopeId", "data-v-c3e83e58"]]);
34784
34804
  export {
34785
- QL as CoordinatesVerifyPolygon,
34805
+ $L as CoordinatesVerifyPolygon,
34786
34806
  eb as MapHeatComponent,
34787
34807
  tb as MapSearchAddress,
34788
- $L as MapView,
34808
+ QL as MapView,
34789
34809
  YL as listenServiceGoogleMaps,
34790
34810
  qL as searchAutomaticGoogleMaps,
34791
34811
  VL as searchManualGoogleMaps