我想使用谷歌地理编码来查找带有名称的地方纬度经度列表,我没有在 iphone 中使用它的经验,但在 android 中它只是调用 url。但是当我在 iphone 中尝试相同的操作时,它给了我“请求被拒绝”的错误。指导我如何将其集成到 iphone 中,或者我应该使用 BSForwardGeocoder 之类的库,我正在这样做
NSString *url = [NSString stringWithFormat:@"http://maps.googleapis.com/maps/api/geocode/json?address=%@&sensor=true", locationString];
url = [url stringByReplacingOccurrencesOfString:@" " withString:@"%20"];
NSURL *wurl = [NSURL URLWithString:url];
NSDictionary *dict = [Json objectWithUrl:wurl];
NSLog(@"%@", dict);
它打印为
{
results = (
);
status = "REQUEST_DENIED";
}