基于CLGeocoder - 地理编码

Posted knightguang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基于CLGeocoder - 地理编码相关的知识,希望对你有一定的参考价值。

ios中CoreLocatio框架中的CLGeocoder为我们提供了地理编码方法:
首先需要导入框架
#import <CoreLocation/CoreLocation.h>
地理编码方法有三种:

- (void)geocodeAddressDictionary:(NSDictionary *)addressDictionary completionHandler:(CLGeocodeCompletionHandler)completionHandler;
- (void)geocodeAddressString:(NSString *)addressString completionHandler:(CLGeocodeCompletionHandler)completionHandler;
- (void)geocodeAddressString:(NSString *)addressString inRegion:(nullable CLRegion *)region completionHandler:(CLGeocodeCompletionHandler)completionHandler;

下面简单的介绍其中一种常用的方法<上面提到的第二种方法>:步骤:
1、获取用户输入的地理位置
2、创建地理编码对象<CLGeocoder对象>
3、利用地理编码对象编码
3.1、当编码完成时,会调用 completionHandler对象,该对象类型为 CLGeocodeCompletionHandler,实际上是一个 block 对象
这个对象中传递了2个参数,其中placemark:里面装了CLPlacemark对象
技术分享图片

根据文档,可以知道CLPlacemark对象中包含了 该位置的经纬度以及城市/区域/国家代码/邮编等等...信息
由此我们可以根据返回参数placemark获取到我们需要的数据
< Demo如下 >:

@interface ViewController ()
#pragma mark - 地理编码
//监听地理编码点击事件
- (IBAction)geocodeBtnClick;

// 需要编码的地址
@property (weak, nonatomic) IBOutlet UITextField *addressField;

//经度
@property (weak, nonatomic) IBOutlet UILabel *longitudeLabel;

//纬度
@property (weak, nonatomic) IBOutlet UILabel *latitudeLabel;

//详情
@property (weak, nonatomic) IBOutlet UILabel *detailAddressLabel;

//地理编码对象
@property (nonatomic ,strong) CLGeocoder *geocoder;

@end
#pragma mark - 地理编码响应
- (void)geocodeBtnClick
{
   
     // 0.获取用户输入的位置
     NSString *addressStr = self.addressField.text;
   
         if (addressStr == nil || addressStr.length == 0) {
            NSLog(@"请输入地址");
            return;
    }

      // 1.创建地理编码对象
      // 2.利用地理编码对象编码
      // 根据传入的地址获取该地址对应的经纬度信息
      [self.geocoder geocodeAddressString:addressStr completionHandler:^(NSArray *placemarks, NSError *error) {
        
          if (placemarks.count == 0 || error != nil) {
              return ;
          }
          // placemarks地标数组, 地标数组中存放着地标, 每一个地标包含了该位置的经纬度以及城市/区域/国家代码/邮编等等...
          // 获取数组中的第一个地标
          CLPlacemark *placemark = [placemarks firstObject];

          self.latitudeLabel.text = [NSString stringWithFormat:@"%f", placemark.location.coordinate.latitude];
          self.longitudeLabel.text = [NSString stringWithFormat:@"%f", placemark.location.coordinate.longitude];
          NSArray *address = placemark.addressDictionary[@"FormattedAddressLines"];
          NSMutableString *strM = [NSMutableString string];
          for (NSString *str in address) {
              [strM appendString:str];
          }
          self.detailAddressLabel.text = strM;
      }];
 }

#pragma mark - 懒加载, 1.创建地理编码对象
- (CLGeocoder *)geocoder
{

    if (!_geocoder) {
        _geocoder = [[CLGeocoder alloc] init];
    }
    return _geocoder;
}

效果图如下:
技术分享图片














以上是关于基于CLGeocoder - 地理编码的主要内容,如果未能解决你的问题,请参考以下文章

对许多地址进行地理编码 - CLGeocoder

对用于反向地理编码位置的 CLGeocoder 类方法感到困惑

CLGeocoder 转发地理编码邮政编码

使用 CLGeocoder 的正向地理编码示例

使用 CLGeocoder 反向地理编码查找当前位置

CLGeocoder 反向地理编码位置。第一次在 [placemarks count = 0]?