@maplander/components 0.21.26 → 0.21.28

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.
@@ -7787,7 +7787,7 @@ var MarkersService = /** @class */ (function () {
7787
7787
  function (el) {
7788
7788
  el.extras['repeat'] = false;
7789
7789
  /** @type {?} */
7790
- var size = list.filter((/**
7790
+ var size = newList.filter((/**
7791
7791
  * @param {?} item
7792
7792
  * @return {?}
7793
7793
  */
@@ -7795,7 +7795,7 @@ var MarkersService = /** @class */ (function () {
7795
7795
  return el.location.latitude === item.location.latitude && el.location.longitude === item.location.longitude;
7796
7796
  }));
7797
7797
  /** @type {?} */
7798
- var distance = 12 * size.length / 2.0;
7798
+ var distance = 30 * size.length / 2.0;
7799
7799
  /** @type {?} */
7800
7800
  var radiansBetweenAnnotations = (Math.PI * 2) / size.length;
7801
7801
  if (!el.extras['repeat'] && size.length > 1) {
@@ -7824,7 +7824,7 @@ var MarkersService = /** @class */ (function () {
7824
7824
  }
7825
7825
  return el;
7826
7826
  }));
7827
- response.markers = list;
7827
+ response.markers = newList;
7828
7828
  return response;
7829
7829
  };
7830
7830
  /**