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 34b1af7 commit 03271fdCopy full SHA for 03271fd
README.md
@@ -204,6 +204,10 @@ options.focalLocation = locationManager.location
204
options.allowedScopes = .pointOfInterest
205
206
let task = geocoder.batchGeocode(options) { (placemarksByQuery, attributionsByQuery, error) in
207
+ guard let placemarksByQuery = placemarksByQuery else {
208
+ return
209
+ }
210
+
211
let nearestSkyline = placemarksByQuery[0][0].location
212
let distanceToSkyline = nearestSkyline.distance(from: locationManager.location)
213
let nearestGoldStar = placemarksByQuery[1][0].location
0 commit comments