@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.
@@ -7799,7 +7799,7 @@
7799
7799
  function (el) {
7800
7800
  el.extras['repeat'] = false;
7801
7801
  /** @type {?} */
7802
- var size = list.filter((/**
7802
+ var size = newList.filter((/**
7803
7803
  * @param {?} item
7804
7804
  * @return {?}
7805
7805
  */
@@ -7807,7 +7807,7 @@
7807
7807
  return el.location.latitude === item.location.latitude && el.location.longitude === item.location.longitude;
7808
7808
  }));
7809
7809
  /** @type {?} */
7810
- var distance = 12 * size.length / 2.0;
7810
+ var distance = 30 * size.length / 2.0;
7811
7811
  /** @type {?} */
7812
7812
  var radiansBetweenAnnotations = (Math.PI * 2) / size.length;
7813
7813
  if (!el.extras['repeat'] && size.length > 1) {
@@ -7836,7 +7836,7 @@
7836
7836
  }
7837
7837
  return el;
7838
7838
  }));
7839
- response.markers = list;
7839
+ response.markers = newList;
7840
7840
  return response;
7841
7841
  };
7842
7842
  /**