OS定位操作,获取当前位置,计算两点之间距离

一、导入CoreLocation.framework

二、#import <CoreLocation/CoreLocation.h>

三、声明代理 <CLLocationManagerDelegate>

四、代码实现

1、声明

01 CLLocationManager *locationManager;//定义Manager
02 // 判断定位操作是否被允许
03 if([CLLocationManager locationServicesEnabled]) {
04     CLLocationManager *locationManager = [[[CLLocationManager alloc] init] autorelease];
05  
06      self.locationManager.delegate = self;
07 }else {
08      //提示用户无法进行定位操作
09 }
10  
11 // 开始定位
12 [locationManager startUpdatingLocation];
2、更新位置后代理方法,iOS6.0一下的方法

01 - (void)locationManager:(CLLocationManager *)manager
02     didUpdateToLocation:(CLLocation *)newLocation
03            fromLocation:(CLLocation *)oldLocation {
04  
05     //latitude和lontitude均为NSString型变量
06         //纬度
07     self.latitude = [NSString  stringWithFormat:@"%.4f", newLocation.coordinate.latitude];
08  
09         //经度
10     self.longitude = [NSString stringWithFormat:@"%.4f",                           newLocation.coordinate.longitude];
11      
12 }
3、iOS6.0以上苹果的推荐方法

01 -(void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations
02 {
03     //此处locations存储了持续更新的位置坐标值,取最后一个值为最新位置,如果不想让其持续更新位置,则在此方法中获取到一个值之后让locationManager stopUpdatingLocation
04     CLLocation *currentLocation = [locations lastObject];
05      
06     CLLocationCoordinate2D coor = currentLocation.coordinate;
07     self.latitude =  coor.latitude;
08     self.longitude = coor.longitude;
09     
10     //[self.locationManager stopUpdatingLocation];
11      
12 }

4、更新失败的方法

1 - (void)locationManager:(CLLocationManager *)manager
2        didFailWithError:(NSError *)error {
3      
4   if (error.code == kCLErrorDenied) {
5       // 提示用户出错原因,可按住Option键点击 KCLErrorDenied的查看更多出错信息,可打印error.code值查找原因所在
6   }
7 }
五、根据两点坐标计算两点之间的距离,此方法为苹果自带方法,亲测速度比高德API速度快很多,但是数据与高德API得到的不一样,准确度本人未能证实

1 //第一个坐标
2 CLLocation *current=[[CLLocation alloc] initWithLatitude:32.178722 longitude:119.508619];
3 //第二个坐标
4 CLLocation *before=[[CLLocation alloc] initWithLatitude:32.206340 longitude:119.425600];
5 // 计算距离
6 CLLocationDistance meters=[current distanceFromLocation:before];

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值