gpt4 book ai didi

ios - 使用反向地理编码(Google API)提取街道名称

转载 作者:行者123 更新时间:2023-11-29 03:45:52 25 4
gpt4 key购买 nike

我正在使用 Google 反向地理编码来获取用户的当前位置。我的代码是这样的:

    NSString* StrCurrentLongitude=[NSString stringWithFormat: @"%f", currentLocation.coordinate.longitude]; // string value

NSString* StrCurrentLatitude=[NSString stringWithFormat: @"%f", currentLocation.coordinate.latitude];

[NSURL URLWithString:[NSString stringWithFormat:@"http://maps.googleapis.com/maps/api/geocode/json?latlng=%@,%@&sensor=true_or_false",StrCurrentLatitude,StrCurrentLongitude]];

现在我如何从这里继续获取用户的当前位置?

最佳答案

我的头顶:

[NSURLConnection sendAsynchronousRequest:[NSURLRequest requestWithUrl:yourURL] queue:[NSOperationQueue mainQueue] completion:^(NSURLResponse *r, NSData *d, NSError *e) {
//decode it
id json = [NSJSONSerialization JSONObjectWithData:d options:0 error:nil];

//process google response, which is JSON IIRC
}];

关于ios - 使用反向地理编码(Google API)提取街道名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17773942/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com