地理编码与反地理编码

简介: 地理编码与反地理编码
  • 使用CLGeocoder可以完成“地理编码”和“反地理编码”
  • 地理编码:根据给定的地名,获得具体的位置信息(比如经度和纬度,以及地址的全称)
  • 反地理编码:根据给定的经度和纬度,获取具体的位置信息


(一)地理编码



  • 具体的做法:(就两步)
1.创建地理编码对象:导入框架#import <CoreLocation/CoreLocation.h>
     CLGeocoder *geocoder = [[CLGeocoder alloc]init];
2.利用地理编码对象编码:声明一个@property(nonatomic,strong) CLGeocoder *geocoder;属性
  • 调用一个地理编码方法:(很重要)


[self.geocoder geocodeAddressString:self.addressFiled.text completionHandler:^(NSArray<CLPlacemark *> * _Nullable placemarks, NSError * _Nullable error)


地理编码方法:


image.png

下面是具体的代码:(在storyBoard里面画的,1个button,1个UITextFiled,3个UILabel)

#import "ViewController.h"
 #import <CoreLocation/CoreLocation.h>
@interface ViewController ()<CLLocationManagerDelegate>
/*
   需要编码的地址容器
*/
@property (weak, nonatomic) IBOutlet UITextField *addressFiled;
/*
    经度容器
*/
 @property (weak, nonatomic) IBOutlet UILabel *longitudeLabel;
/*
    纬度容器
*/
@property (weak, nonatomic) IBOutlet UILabel *latitudeLabel;
/*
    详情容器
*/
@property (weak, nonatomic) IBOutlet UILabel *detailAddressLabel;
/*
    监听地理编码点击事件
*/
- (IBAction)geocoderBtnClick;
@property(nonatomic,strong) CLGeocoder *geocoder;
@end
@implementation ViewController
//1.创建地理编码对象
-(CLGeocoder *)geocoder
{
  if (!_geocoder) {
    _geocoder = [[CLGeocoder alloc]init];
}
  return _geocoder;
}
- (void)viewDidLoad {
[super viewDidLoad];
self.addressFiled.clearButtonMode = UITextFieldViewModeAlways;
self.addressFiled.placeholder = @"    请输入地理位置";
}
- (IBAction)geocoderBtnClick {
//获取用户输入的位置
NSString *addressString = self.addressFiled.text;
NSLog(@"%@",addressString);
if (addressString == nil || addressString.length == 0) {
    NSLog(@"请输入地址");
    return;
}
//2.利用地理编码对象编码
//根据传入的地址获取该地址的对应的经纬度信息
[self.geocoder geocodeAddressString:self.addressFiled.text completionHandler:^(NSArray<CLPlacemark *> * _Nullable placemarks, NSError * _Nullable error) {
    //placemarks 地标  地标数组里面存放着地标,每一个地标包含了该位置的经纬度,以及城市/区域/国家代码/邮编等等....
    if (placemarks.count == 0 || error != nil) {
        return;
    }
    //获取数组里面第一个信息
    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 *array = placemark.addressDictionary[@"FormattedAddressLines"];
    NSMutableString *stringAddstring = [NSMutableString string];
    for (NSString *string in array) {
        [stringAddstring appendString:string];
    }
    self.detailAddressLabel.text = stringAddstring;
    NSLog(@"%@ %@ %f %f",placemark.name,placemark.addressDictionary,placemark.location.coordinate.latitude,placemark.location.coordinate.longitude);
}];
 }
 @end

(二)反地理编码


1.创建地理编码对象:导入框架#import <CoreLocation/CoreLocation.h>
       CLGeocoder *geocoder = [[CLGeocoder alloc]init];
    2.利用地理编码对象编码:声明一个@property(nonatomic,strong) CLGeocoder *geocoder;属性

调用一个反地理编码方法:(很重要)

[self.geocoder reverseGeocodeLocation:location completionHandler:^(NSArray<CLPlacemark *> * _Nul



image.png


下面是具体的代码

#import "ViewController.h"
#import <CoreLocation/CoreLocation.h>
@interface ViewController ()<CLLocationManagerDelegate>
- (IBAction)clickButton;
@property (weak, nonatomic) IBOutlet UITextField *latitudeValue;
@property (weak, nonatomic) IBOutlet UITextField *longitudeValue;
@property (weak, nonatomic) IBOutlet UILabel *labelText;
@property(nonatomic,strong) CLGeocoder *geocoder;
@end
@implementation ViewController
-(CLGeocoder *)geocoder
{
   if (!_geocoder) {
     _geocoder = [[CLGeocoder alloc]init];
 }
   return _geocoder;
}
 - (void)viewDidLoad {
 [super viewDidLoad];
 }
- (IBAction)clickButton {
  //1.获取用户输入的经纬度
 NSString *latitudeString = self.latitudeValue.text;
 NSString *longitudeValueString = self.longitudeValue.text;
 if (latitudeString == nil || latitudeString.length == 0 || longitudeValueString == nil || longitudeValueString.length == 0) {
  NSLog(@"请输入经纬度");
  return;
 }
 //2.根据用户输入的经纬度创建CLLocation对象
  CLLocation *location = [[CLLocation alloc]initWithLatitude:[latitudeString doubleValue] longitude:[longitudeValueString doubleValue]];
 //3.根据CLLocation对象获取相应的地表信息
  [self.geocoder reverseGeocodeLocation:location completionHandler:^(NSArray<CLPlacemark *> * _Nullable placemarks, NSError * _Nullable error) {
  for (CLPlacemark *placemark in placemarks) {
      self.labelText.text = placemark.locality;
      NSLog(@"哈哈");
    }
 }];
}
@end


目录
相关文章
|
定位技术
百度地图拾取经纬度转为标准GEOJSON格式的函数解决方案
百度地图拾取经纬度转为标准GEOJSON格式的函数解决方案
252 0
|
定位技术
Threejs实现绘制地球,地理位置标注、经纬度转换世界坐标threejs坐标
Threejs实现绘制地球,地理位置标注、经纬度转换世界坐标threejs坐标
1522 0
Threejs实现绘制地球,地理位置标注、经纬度转换世界坐标threejs坐标
|
3月前
|
JavaScript 前端开发 定位技术
GIS开发:开源库计算经纬度坐标和瓦片坐标
GIS开发:开源库计算经纬度坐标和瓦片坐标
|
6月前
|
JavaScript 前端开发 小程序
高德地图实现-逆地理编码-输入提示-地图标点-实现车库管理
高德地图实现-逆地理编码-输入提示-地图标点-实现车库管理
205 0
|
定位技术
百度地图开发:字符串经纬度转为经纬度数组的解决方案
百度地图开发:字符串经纬度转为经纬度数组的解决方案
158 0
|
6月前
|
XML JSON 前端开发
使用react实现通过经纬度获取地址(地理/逆地理编码)
我使用的是高德地图的开放平台实现的
244 0
|
定位技术 PHP 数据格式
php通过地址获得百度地图经纬度(逆地理编码)
php通过地址获得百度地图经纬度(逆地理编码)
106 0
|
定位技术
百度拾取经纬度坐标转化的geojson数据偏离中心的解决方案
百度拾取经纬度坐标转化的geojson数据偏离中心的解决方案
150 0
|
定位技术 API Python
Python调用百度API 实现地理位置经纬度坐标转换
经纬度坐标转换最常见办法就是调用第三方 API,例如百度、高德地图等服务平台,提供了相应的功能接口,它们的这类技术已经非常成熟啦,准确稳定,关键还是免费的 ~,本期教程以百度为例(高德的用方类似),介绍一下其用法
Python调用百度API 实现地理位置经纬度坐标转换