Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get lat and long coordinates from address string

I have a MKMapView that has a UISearchBar on the top, and I want the user to be able to type a address, and to find that address and drop a pin on it. What I don't know is how to turn the address string into longitude and latitude, so I can make a CLLocation object. Does anyone know how I can do this?

like image 619
Chandler De Angelis Avatar asked Sep 01 '13 21:09

Chandler De Angelis


People also ask

How do I get lat long from an address in Excel?

To get the latitude of the address in cell B2, use the formula = GetLatitude(B2) To get the longitude of the address in cell B2, use the formula = GetLongitude(B2) To get both the latitude and longitude of the address in cell B2, use the formula = GetCoordinates(B2)


2 Answers

You may find your answer in this question.

iOS - MKMapView place annotation by using address instead of lat / long By User Romes.

NSString *location = @"some address, state, and zip";
CLGeocoder *geocoder = [[CLGeocoder alloc] init];
        [geocoder geocodeAddressString:location 
             completionHandler:^(NSArray* placemarks, NSError* error){
                 if (placemarks && placemarks.count > 0) {
                     CLPlacemark *topResult = [placemarks objectAtIndex:0];
                     MKPlacemark *placemark = [[MKPlacemark alloc] initWithPlacemark:topResult];

                     MKCoordinateRegion region = self.mapView.region;
                     region.center = placemark.region.center;
                     region.span.longitudeDelta /= 8.0;
                     region.span.latitudeDelta /= 8.0;

                     [self.mapView setRegion:region animated:YES];
                     [self.mapView addAnnotation:placemark];
                 }
             }
         ];

A Very simple solution. But only applicable on iOS5.1 or later.

like image 54
arjavlad Avatar answered Oct 18 '22 22:10

arjavlad


I used a similar approach like Vijay, but had to adjust one line of code. region.center = placemark.region.center didn't work for me. Maybe my code helps someone as well:

let location: String = "1 Infinite Loop, CA, USA"
let geocoder: CLGeocoder = CLGeocoder()
geocoder.geocodeAddressString(location,completionHandler: {(placemarks: [CLPlacemark]?, error: NSError?) -> Void in
    if (placemarks?.count > 0) {
        let topResult: CLPlacemark = (placemarks?[0])!
        let placemark: MKPlacemark = MKPlacemark(placemark: topResult)
        var region: MKCoordinateRegion = self.mapView.region

        region.center.latitude = (placemark.location?.coordinate.latitude)!
        region.center.longitude = (placemark.location?.coordinate.longitude)!

        region.span = MKCoordinateSpanMake(0.5, 0.5)

        self.mapView.setRegion(region, animated: true)
        self.mapView.addAnnotation(placemark)
    }
}) 
like image 42
makle Avatar answered Oct 18 '22 21:10

makle