Get my location through reverseGeocodeLocation

0

I would like your help to solve a problem, I have a delivery system that gets my location using GPS, I've been reading something about "reverseGeocodeLocation", but I only get one result but it's not always what I'm in if I am in my house in the middle of the block it returns the address nearest, someone could help me get the system to return the 4 streets around the block where I am, my app was programmed for IOS with the objective language -c, if anyone can help me I appreciate it.

    
asked by anonymous 29.07.2015 / 23:06

1 answer

0
CLLocation *crnLoc = [locations lastObject];
latitude.text = [NSString stringWithFormat:@"%.8f",crnLoc.coordinate.latitude];
longitude.text = [NSString stringWithFormat:@"%.8f",crnLoc.coordinate.longitude];
altitude.text = [NSString stringWithFormat:@"%.0f m",crnLoc.altitude];

The altitude influences the accuracy of the location.

    
31.07.2015 / 00:16