CoreLocation是用来定位的,大家都用过导航或者查看自己的外卖到什么地方了,用的就是核心定位.有了核心定位才能实现地图的那些定位功能.下面的介绍,只是让大家简单的理解一下CoreLocation干嘛用,怎么用.
一次定位#
使用步骤
1.导入framework
2.创建manager
CLLocationManager *locationManager = [CLLocationManager new];
3.开启定位
[locationManager startUpdatingLocation];
//第二种
//汽车导航的时候是会有箭头方向的 head:方向
// [locationManager startUpdatingHeading];
4.开启用户授权
//当使用的时候就定位
[locationManager requestWhenInUseAuthorization];
//第二种:只要app不死,就一直定位,除了导航一般别用 天朝流量太贵
//[locationManager requestAlwaysAuthorization];
(设置info.plist)
//ios8以后设置需要的key 我这里也给贴出来 方便使用 请对应好在使用
//key:
//NSLocationAlwaysUsageDescription //NSLocationWhenInUseUsageDescription
5.设置代理
locationManager.delegate = self;
代理方法:(方法会一直走 必须手动停止)
-(void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray<CLLocation *> *)locations{
//打印定位信息
NSLog(@"%@",locations);
//如果要停止
[manager stopUpdatingLocation];
//方法中的manager参数 就是我们定义的locationManager 也可以直接用全局的locationManager 结束定位
//为啥locations是一个数组
//万一你哪天一只脚在北京,一只脚在河北呢.这时候就得给你返回两个位置一个河北,一个北京.为了以防万一.
//有兴趣的可以看一下CLLocation的头文件
}
错误1:如果用户权限一闪而过,将locationManager定义为全局变量,这里是作用域错误.
持续定位#
需求:根据用户距离 进行灵活定位
定位原理和一次性定位一样 只不过用了locationManager的一个属性
//距离属性 单位:米
locationManager.distanceFilter = 200;
这个属性叫做位置筛选器 顾名思义就是查看你的位置的,工作原理是 看你的距离是否有200,有200就定位一下. 单位是米 苹果的定位距离基本都是米,而且操作类型都是double的别名.
//新需求 定位精度 要很高很高
locationManager的另一个属性
//期望精度
locationManager.desiredAccuracy = kCLLocationAccuracyBest;
给一下操作流程防止以后需要
cmd 点 desiredAccuracy -> 看属性上面的倒数第三行 -> 找到 kCLLocationAccuracyBestForNavigation for navigation -> cmd 点kCLLocationAccuracyBestForNavigation 你需要的都在这里
NSLocationWhenInUseUsageDescription临时开启后台定位#
当我们用了如上的属性设置定位的时候,又想在后台的时候让手机进行定位,那我们就得用locationManager的另一个属性了allowsBackgroundLocationUpdates
这个属性 只有在NSLocationWhenInUseUsageDescription的情况下才有意义的, NSLocationAlwaysUsageDescription这个属性 一直在定位,除非干掉App.
因为是9.0以后的产物,所以我们要判断当前的适配状况
//临时开启定位
if([UIDevice currentDevice].systemVersion.floatValue >= 9.0){
//临时开启后台定位 一定要设置plist文件
locationManager.allowsBackgroundLocationUpdates = true;
}
写完这个以后一定要立马配置plist文件,不然,世界的和平就容易崩塌
设置plist文件
找到key:Required background modes 里面有个数组 点开,右边添加描述:App registers for location updates
简便设置plist方法
点击项目->capabilities->backgroundModes->点开 查找所需要的key 前面打上对勾
两点之间的距离##
-(void)compareDistance{
//北京位置
CLLocation *bjLocation = [[CLLocation alloc]initWithLatitude:39 longitude:115];
//上海位置
CLLocation *shLocation = [[CLLocation alloc]initWithLatitude:30 longitude:120];
//比较 返回值是 米 需要我们手动换算成公里
CLLocationDistance distance = [bjLocation distanceFromLocation:shLocation];
//换算公里
NSLog(@"%f",distance * 0.001);
}
地理编码##
需求:给一个地址,你告诉我经纬度,和街道详细信息
storyBoard版本
属性连线如下:
//地址text
@property (weak, nonatomic) IBOutlet UITextField *addresTxt;
//经度label
@property (weak, nonatomic) IBOutlet UILabel *longitudeLabel;
//纬度label
@property (weak, nonatomic) IBOutlet UILabel *latitudeLabel;
//详情label
@property (weak, nonatomic) IBOutlet UILabel *detailLabel;
点击按钮:
- (IBAction)gecoder {
//创建地理编码对象
CLGeocoder *gecoder = [CLGeocoder new];
//地理编码
if(self.addresTxt.text.length > 0){
[gecoder geocodeAddressString:self.addresTxt.text completionHandler:^(NSArray<CLPlacemark *> * _Nullable placemarks, NSError * _Nullable error) {
if (error) {
return;
}
//查看CLPlacemark
//获取地标
for (CLPlacemark *placemark in placemarks) {
//赋值
self.latitudeLabel.text = [NSString stringWithFormat:@"%f",placemark.location.coordinate.latitude];
self.longitudeLabel.text = [NSString stringWithFormat:@"%f",placemark.location.coordinate.longitude];
self.detailLabel.text = [NSString stringWithFormat:@"%@+%@",placemark.name,placemark.locality];
}
}];
}else{
return;
}
}
通过一个地方名字匹配的时候,有可能会出现很多相同名字的地方(比如,你打北京大学会有两个校区出现),可以打印一下placemark.locality 来看一下 但是返回来 你给我一个坐标,那只能有一个地方
反地理编码##
同样用storyBoard实现
连线属性:
//经度txt
@property (weak, nonatomic) IBOutlet UITextField *longitudeTxt;
//纬度txt
@property (weak, nonatomic) IBOutlet UITextField *latitudeLabel;
//详细信息
@property (weak, nonatomic) IBOutlet UILabel *descLabel;
点击按钮方法
//反编码按钮
- (IBAction)revGeocoder:(id)sender {
//1.创建编码对象
CLGeocoder *geocoder = [CLGeocoder new];
//2.反地理编码->向苹果请求数据
//2.1 创建位置
CLLocation *location = [[CLLocation alloc]initWithLatitude:[self.latitudeLabel.text doubleValue] longitude:[self.longitudeTxt.text doubleValue]];
[geocoder reverseGeocodeLocation:location completionHandler:^(NSArray<CLPlacemark *> * _Nullable placemarks, NSError * _Nullable error) {
//防错
if(error){
return ;
}
//获取地标
CLPlacemark *placemark = placemarks[0];
self.descLabel.text = placemark.name;
}];
}
对地理编码和反编码 主要是方法的差别,编码是geocodeAddressString
反编码是reverseGeocodeLocation 多用几次就可以了.
本文不针对任何学术性研究,单纯为了娱乐.看不惯我就直说,反正我不改.
宝剑锋从磨砺出,梅花香自苦寒来.