I am having an issue with Google Maps Reverse Geocoding when it comes to setting a UILabel\'s text to the reverse geocoded address. The UILabel is in an XIB use as a custom info
The first response worked for me. As an alternative to
marker.title = lines.joined(separator: "\n")`
try this, it will give you the street address:
marker.title = response?.firstResult()?.thoroughfare
marker.snippet = response?.firstResult()?.locality
For the city, try
marker.snippet = response?.firstResult()?.locality