@maptiler/geocoding-control 0.0.91-git.535bd0 → 0.0.91-git.9f388b

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.
@@ -453,7 +453,7 @@ function unwrapBbox(bbox0) {
453
453
  on:mouseleave={() => (selectedItemIndex = -1)}
454
454
  on:blur={() => undefined}
455
455
  >
456
- {#each listFeatures as feature, i (feature.id)}
456
+ {#each listFeatures as feature, i (feature.id + (feature.address ? "," + feature.address : ""))}
457
457
  <FeatureItem
458
458
  {feature}
459
459
  {showPlaceType}
package/leaflet.js CHANGED
@@ -909,7 +909,9 @@ function $l(r) {
909
909
  );
910
910
  const u = (l) => (
911
911
  /*feature*/
912
- l[73].id
912
+ l[73].id + /*feature*/
913
+ (l[73].address ? "," + /*feature*/
914
+ l[73].address : "")
913
915
  );
914
916
  for (let l = 0; l < a.length; l += 1) {
915
917
  let c = ga(r, a, l), f = u(c);