CLLocationCoordinate2D cordinate = [self geoCodeUsingAddress:@"Your Address"];
NSLog(@"coordinate from address::%f , %f",cordinate.longitude,cordinate.latitude);
- (CLLocationCoordinate2D) geoCodeUsingAddress:(NSString *)address
{
double latitude = 0, longitude = 0;
NSString *esc_addr = [address stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSString *req = [NSString stringWithFormat:@"http://maps.google.com/maps/api/geocode/json?sensor=false&address=%@", esc_addr];
NSString *result = [NSString stringWithContentsOfURL:[NSURL URLWithString:req] encoding:NSUTF8StringEncoding error:NULL];
if (result)
{
NSScanner *scanner = [NSScanner scannerWithString:result];
if ([scanner scanUpToString:@"\"lat\" :" intoString:nil] && [scanner scanString:@"\"lat\" :" intoString:nil]) {
[scanner scanDouble:&latitude];
if ([scanner scanUpToString:@"\"lng\" :" intoString:nil] && [scanner scanString:@"\"lng\" :" intoString:nil]) {
[scanner scanDouble:&longitude];
}
}
}
CLLocationCoordinate2D center;
center.latitude = latitude;
center.longitude = longitude;
MKCoordinateRegion region = MKCoordinateRegionMakeWithDistance(center, 50, 50);
region.span.latitudeDelta = 0.02f;
region.span.longitudeDelta = 0.02f;
region.center = center;
[self.myMapView setRegion:region animated:YES];
//set annotation
MKPointAnnotation *annotation = [[MKPointAnnotation alloc]init];
NSString *sttt = [[NSString alloc]initWithFormat:@"%f,%f",center.latitude,center.longitude];
annotation.title = address;
annotation.subtitle = sttt;
annotation.coordinate = center;
[self.myMapView addAnnotation:annotation];
return center;
}
You will get the result like this
{ "results" : [ { "address_components" : [ { "long_name" : "Coimbatore", "short_name" : "Coimbatore", "types" : [ "locality", "political" ] }, { "long_name" : "Coimbatore", "short_name" : "Coimbatore", "types" : [ "administrative_area_level_2", "political" ] }, { "long_name" : "Tamil Nadu", "short_name" : "TN", "types" : [ "administrative_area_level_1", "political" ] }, { "long_name" : "India", "short_name" : "IN", "types" : [ "country", "political" ] } ], "formatted_address" : "Coimbatore, Tamil Nadu, India", "geometry" : { "bounds" : { "northeast" : { "lat" : 11.14356120, "lng" : 77.1133590 }, "southwest" : { "lat" : 10.89792370, "lng" : 76.8830110 } }, "location" : { "lat" : 11.01684450, "lng" : 76.95583209999999 }, "location_type" : "APPROXIMATE", "viewport" : { "northeast" : { "lat" : 11.09502970, "lng" : 77.05123890 }, "southwest" : { "lat" : 10.89792370, "lng" : 76.8830110 } } }, "types" : [ "locality", "political" ] } ], "status" : "OK" }
No comments:
Post a Comment