We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d89fe9 commit dd3c211Copy full SHA for dd3c211
MapboxGeocoder/MBPlacemark.swift
@@ -485,6 +485,9 @@ open class GeocodedPlacemark: Placemark {
485
} else {
486
return "\(houseNumber) \(streetName)"
487
}
488
+ } else if scope == .address, precision == .intersection {
489
+ // For intersection features, `text` is just the first street name. The first line of the fully qualified address contains the cross street too.
490
+ return qualifiedNameComponents.first ?? text
491
492
return text
493
0 commit comments