博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
GPS定位
阅读量:4077 次
发布时间:2019-05-25

本文共 3530 字,大约阅读时间需要 11 分钟。

#import <CoreLocation/CoreLocation.h>//头文件
#define PATH @"http://api.map.baidu.com/geocoder?output=json&location=%f,%f&key=dc40f705157725fc98f1fee6a15b6e60"
@interface RootViewController ()<CLLocationManagerDelegate>
{
    //lbs 定位管理
    CLLocationManager *_manager;
}
@property (nonatomic,strong)CLLocationManager *manager;
@end
@implementation RootViewController
- (void)viewDidLoad {
    [super viewDidLoad];
    self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"开始定位" style:UIBarButtonItemStylePlain target:self action:@selector(begineLocation)];
    self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"停止定位" style:UIBarButtonItemStylePlain target:self action:@selector(endLocation)];
    
    //创建管理器
    [self initLocationManager];
}
/*
 kCLLocationAccuracyBestForNavigation //导航时候用的精度
 kCLLocationAccuracyBest;//比较高的精度
 kCLLocationAccuracyNearestTenMeters; 10m内
 kCLLocationAccuracyHundredMeters;100m
 kCLLocationAccuracyKilometer;1000m
 kCLLocationAccuracyThreeKilometers; 3000m
 */
- (void)initLocationManager {
    if (!self.manager) {
        //实例化一个管理对象
        self.manager = [[CLLocationManager alloc] init];
        //设置精度 精度越高越耗电
        self.manager.desiredAccuracy = kCLLocationAccuracyBestForNavigation;
        //精度大小 1m
        self.manager.distanceFilter = 1;
        
        /*
         iOS之后 需要设置配置文件
         
         1.在info.plist中添加  Privacy - Location Usage Description  ,  NSLocationAlwaysUsageDescription
         2.在代码中  [_manager requestAlwaysAuthorization];
         //ios8特有,申请用户授权使用地理位置信息
        
         */
        CGFloat version = [[[UIDevice currentDevice] systemVersion] floatValue];
        //判断版本
        if (version >= 8.0) {
            //申请用户授权使用地理位置信息
            [self.manager requestAlwaysAuthorization];
        }
        //如果要 获取定位的位置 那么需要设置代理
        self.manager.delegate = self;
        
    }
}
- (void)begineLocation {
    //是否支持定位服务
    if ([CLLocationManager locationServicesEnabled]) {
        //开始定位
        [self.manager startUpdatingLocation];
    }else{
        NSLog(@"没有gps");
    }
}
//停止定位
- (void)endLocation {
    [self.manager stopUpdatingLocation];
}
#pragma mark - CLLocationManagerDelegate协议
//当定位开始时 位置发生改变的时候 会一直调用
//会把定位的位置 放入 locations数组中
//这个数组实际上只有一个元素
- (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations {
    NSLog(@"定位位置");
    if (locations.count) {
        //数组中只有一个元素
        CLLocation *location = [locations lastObject];
        //CLLocationCoordinate2D是一个结构体 内部存放的是经纬度
        CLLocationCoordinate2D coordinate = location.coordinate;
        NSLog(@"longitude:%f",coordinate.longitude);
        NSLog(@"latitude:%f",coordinate.latitude);
        
#if 1
        //官方自带的地理反编码
        CLGeocoder *geoCoder = [[CLGeocoder alloc] init];
        //地理逆向编码  地理反编码 (把经纬度转化为真正的地址位置)
        [geoCoder reverseGeocodeLocation:location completionHandler:^(NSArray *placemarks, NSError *error) {
            //回调这个block
            //解析好之后会放在 placemarks 数组中(实际上就一个元素)
            for (CLPlacemark *mark in placemarks) {
                NSLog(@"name->%@",mark.name);
                NSLog(@"country:%@",mark.country);
                for (NSString *key in mark.addressDictionary) {
                    NSLog(@"%@",mark.addressDictionary[key]);
                }
            }
        }];
        
#else
        //异步下载数据 用百度的地理反编码
        dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
            NSString *url = [NSString stringWithFormat:PATH,34.77274892, 113.67591140];
            NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:url]];
            //下载完成
            NSDictionary *dict = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:nil];
            NSDictionary *result = dict[@"result"];
            NSLog(@"addr:%@",result[@"formatted_address"]);
            
        });
#endif
        
    }
}
- (void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error {
    NSLog(@"定位失败");
}
- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

转载地址:http://tcsni.baihongyu.com/

你可能感兴趣的文章
Linux下安装Python环境并部署NLP项目
查看>>
Nginx篇-springCloud配置Gateway+Nginx进行反向代理和负载均衡
查看>>
Nginx篇-Nginx配置动静分离
查看>>
缓存篇-Redis缓存失效以及解决方案
查看>>
缓存篇-使用Redis进行分布式锁应用
查看>>
缓存篇-Redisson的使用
查看>>
phpquery抓取网站内容简单介绍
查看>>
找工作准备的方向(4月22日写的)
查看>>
关于fwrite写入文件后打开查看是乱码的问题
查看>>
用结构体指针前必须要用malloc,不然会出现段错误
查看>>
Linux系统中的美
查看>>
一些实战项目(linux应用层编程,多线程编程,网络编程)
查看>>
我觉得专注于去学东西就好了,与世无争。
查看>>
原来k8s docker是用go语言写的,和现在所讲的go是一个东西!
查看>>
STM32CubeMX 真的不要太好用
查看>>
STM32CubeMX介绍、下载与安装
查看>>
电机和桨叶要搭配选择
查看>>
现在发现如果无人机的电机不同,浆可能是不能混用的。
查看>>
不要买铝合金机架的无人机,不耐摔,易变形弯曲。
查看>>
ACfly也是基于FreeRTOS的
查看>>