Questions tagged [reversegeocodelocation]

20 questions
0
votes
1 answer

reverse geocode location in a tableviewcontroller

How can I reverse geocode locations in each tableview row cell? I have a table view controller where each uber request comes in as latitude and longitude. How can I convert each coordinate to actual address in a tableviewcontroller? The code below…
LizG
  • 2,246
  • 1
  • 23
  • 38
0
votes
0 answers

How to show location address using every set of latitude and longitude stored in FirebaseDatabase?

I have 3 sets of latitude and longitude stored in FirebaseDatabase. What I am doing is I am retrieving these stored sets and showing location address using them. Here's my code: databaseReference.child("child").addChildEventListener(new…
0
votes
1 answer

CLGeocoder().reverseGeocodeLocation; what is the handler supposed to be?

This is the code I am using. I am unsure of what variables should be passed into the completion handler. Every other post I view says to pass 'placemark' and 'error' but I am running into warnings and errors. func locationManager(manager:…
0
votes
1 answer

How to save data from reversegeocoding to CoreData in Objective-C?

I am trying to do reverse-geocoding with current location, retrieve City and State and save it to CoreData entity. In the below code, as soon as the save button is hit by user, I expect reverse geocoding to take place and save city and state…
-1
votes
1 answer

CompletionHandler is not executed

Im trying to obtain the "locality" from Coordinates using CLGeocoder.reverseGeocodeLocation, but when the execution reach the completionHandler the code inside the bracket is completely skipped to self.currentPlace = (self.place?.locality)! + ", " +…
1
2