@igo2/geo 21.0.0-next.1 → 21.0.0-next.2

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.
@@ -9898,7 +9898,7 @@ class CapabilitiesService {
9898
9898
  sourceFields: arcgisOptions.fields,
9899
9899
  queryTitle: arcgisOptions.displayField
9900
9900
  });
9901
- options.attributions = attributions;
9901
+ options['attributions'] = attributions;
9902
9902
  return ObjectUtils.mergeDeep(options, baseOptions);
9903
9903
  }
9904
9904
  parseTileOrImageArcgisOptions(baseOptions, arcgisOptions, legend, serviceCapabilities) {
@@ -9946,7 +9946,7 @@ class CapabilitiesService {
9946
9946
  sourceFields: arcgisOptions.fields,
9947
9947
  queryTitle: arcgisOptions.displayField
9948
9948
  });
9949
- options.attributions = attributions;
9949
+ options['attributions'] = attributions;
9950
9950
  return ObjectUtils.mergeDeep(options, baseOptions);
9951
9951
  }
9952
9952
  findDataSourceInCapabilities(layerArray, name) {
@@ -17780,7 +17780,11 @@ class DirectionsComponent {
17780
17780
  handleStopDiff(stops) {
17781
17781
  const simplifiedStops = stops.map((stop) => {
17782
17782
  return ObjectUtils.removeUndefined({
17783
- ...{ id: stop.id, text: stop.text, coordinates: stop.coordinates }
17783
+ ...{
17784
+ id: stop.id,
17785
+ text: stop.text,
17786
+ coordinates: stop.coordinates
17787
+ }
17784
17788
  });
17785
17789
  });
17786
17790
  const diff = ChangeUtils.findChanges(this.previousStops, simplifiedStops, [