For some reason my API key doesn’t seem to be added to my reverse Geocode request.
The key is correctly in my info.plist , I’ve tried adding every other key to my plist also but this still isn’t working.
Here is the request im attempting
var coordinate = CLLocationCoordinate2D()
coordinate.latitude = 54.966682
coordinate.longitude = -7.730234
let query = TTReverseGeocoderQueryBuilder.create(with: coordinate).withReturnSpeedLimit(true)
.build()
reverseGeocoder.reverseGeocoder(with: query)
Any help is greatly appreciated!
Thanks Oliver