I want to get a more accurate address (from coordinates) than the address range from the function
geoCoder.reverseGeocodeLocation(location, completionHandler: {} )
In the google maps API guide (https://developers.google.com/maps/documentation/geocoding/intro#Results) they specify that I can change location_type in order to get a more accurate address. How do I specify these parameters? This is my code:
let geoCoder = CLGeocoder()
let location = CLLocation(latitude: center.latitude, longitude: center.longitude)
geoCoder.reverseGeocodeLocation(location, completionHandler: { (placemarks, error) -> Void in ...
})
If you want to use the
Google Maps API
, as you linked, you need to be forming an HTTP request to the API (with anAPI Key
you've acquired from Google). ThereverseGeocodeLocation
uses Apple's Map API, and is definitely not going to be able to accept Google'slocation_type
parameter. The core HTTP request you're going to want to make is therefore of the form:From the link you specified, the
DESIRED_LOCATION_TYPE
can be one of: