通过CLGeocoder的方法查找区域中的所有位置

时间:2012-05-20 13:41:40

标签: iphone ios location clgeocoder

使用“ - reverseGeocodeLocation:completionHandler:”方法来反转地理编码位置很方便。但是如何获得一个地区的所有地点。

PS。如果一个地区有几个地方。我如何使用区域信息找出所有地方?如反向地理编码一个位置,给定一个坐标,返回一个位置。在这里,我想给一个地区,返回该地区的所有地点。

1 个答案:

答案 0 :(得分:2)

有一个google Geocoder API返回JSON,它只是一种使用GET方法的Web服务

This是Google Gecoder API,This是该网络服务的链接,在此链接中我将区域名称命名为london。

注意:您需要在代码中包含SBJson库。

在该链接的末尾,我有附加地址,如果你附加地址 - 你需要给出区域名称(或)如果你追加纬度和经度,你需要给出坐标,它将相应地返回结果。 / p>

调用google api的代码就像这样

                //Call the Google API
                NSString *req = [NSString stringWithFormat:@"http://maps.google.com/maps/api/geocode/json?sensor=false&address=%@", esc_addr];
                NSLog(@"The get address is %@", req);
                //Pass the string to the NSURL
                NSString *result = [NSString stringWithContentsOfURL:[NSURL URLWithString:req] encoding:NSUTF8StringEncoding error:NULL];
                NSLog(@"The result is %@", result);
                //Initialize the SBJSON Class
                SBJSON *parser = [[SBJSON alloc] init];
                NSError *error = nil;
                //Get the resullts and stored in the address array
                addressArray = [parser objectWithString:result error:&error];
                //Get the latitude values for the given address
                NSDictionary *dict = [[[addressArray valueForKey:@"results"] valueForKey:@"geometry"] valueForKey:@"location"];
                self.latitudeValue = [[dict valueForKey:@"lat"] objectAtIndex:0];
                self.longitudeValue = [[dict valueForKey:@"lng"] objectAtIndex:0];
                NSLog(@"LAT : %@",self.latitudeValue);
                NSLog(@"LONG : %@",self.longitudeValue);