iOS   发布时间:2022-03-30  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了ios – CLGeocoder从给定位置反向地理编码大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
鉴于经度和纬度不是我当前的位置,我如何使用GLGeocoder执行反向地理编码查找?

self.geoCoder = [[CLGeocoder alloc] init];
self.LOCATIOnManager = [[CLLOCATIOnManager alloc] init];
self.LOCATIOnManager.delegate = self;
//    [self.LOCATIOnManager startupdatingLOCATIOn];

[self.geoCoder reverseGeocodeLOCATIOn: LOCATIOnManager.LOCATIOn completionHandler: ^(NSArray *placemarks,NSError *error) {
//        [self.LOCATIOnManager stopupdatingLOCATIOn];

     CLPlacemark *placemark = [placemarks objectATindex:0];
    // Long address
    // NSString *locatedAt = [[placemark.addressDictionary valueForKey:@"FormattedAddressLines"] componentsJoinedByString:@","];
    // Short address
    NSString *locatedAt = [placemark subLocality];

     cell.textLabel.text = spot.name;
     cell.detailTextLabel.text = [NSString StringWithFormat:@"Cab no: %@,spotted at %@",spot.cabno,locatedAt];
 }];

显然只会对我的位置进行地理编码,但我需要明确设置经度和纬度来反转.

解决方法

我从来没有试过这个,但你不能创建自己的CLLOCATIOn对象吗?

如果您知道当前的经度和纬度,您可以 –

CLLOCATIOn *LOCATIOn = [[CLLOCATIOn alloc]initWithLatitude:someValue longitude:someValue];
[self.geoCoder reverseGeocodeLOCATIOn: LOCATIOn completionHandler: ^(NSArray *placemarks,NSError *error) {
    //do something
});

大佬总结

以上是大佬教程为你收集整理的ios – CLGeocoder从给定位置反向地理编码全部内容,希望文章能够帮你解决ios – CLGeocoder从给定位置反向地理编码所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。