iOS地图一口海之言首页投稿(暂停使用,暂停投稿)

iOS 地图定位(一)

2016-12-11  本文已影响214人  codychen123
地图定位.png

前言

定位

一次定位

导入framework.png
    CLLocationManager *locationManager = [[CLLocationManager alloc] init];
self.locationManager = locationManager;

注意:由于在方法里面创建的locationManager是局部变量,但是我们需要locationManager一直存在,所以定义成员属性接收。

2.请求用户授权,在iOS8之前,只要导入CoreLocation 会自动申请权限,在iOS8之后需要程序员手写,而且需要配置info.plist文件

//请求授权有两种,1:无论程序在前台还是在后台运行  都可以使用定位
//需要在info.plist添加:Privacy - Location Always Usage Description
//    [locationManager requestAlwaysAuthorization];

//2.请求app在使用期间授权   在前台使用时才可以使用定位
//需要在info.plist添加:Privacy - Location When In Use Usage Description
[locationManager requestWhenInUseAuthorization];
  
    if ([UIDevice currentDevice].systemVersion.floatValue >= 9.0) {
        // 临时开启后台定位  配置info.plist文件  不配置直接崩溃
        locationManager.allowsBackgroundLocationUpdates = YES;
    }
临时开启后台定位所需要配置的参数

3.设置属性

//    距离筛选  单位:米  当用户移动100.5米后调用定位方法
//    locationManager.distanceFilter = 100.5;
//     期望精度  单位:米  系统默认将100米范围内作为一个位置
//    locationManager.desiredAccuracy = kCLLocationAccuracyBest;

4.设置代理,开启定位

locationManager.delegate = self;
[locationManager startUpdatingLocation];

5.遵循代理,实现方法

<CLLocationManagerDelegate>
// 当定位成功时调用  一直调用 比较耗电
// manager:位置管理者
// locations:包含位置的数组   一个CLLocation代表一个位置
- (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray<CLLocation *> *)locations
{
    // 获取数据
//    NSLog(@"%@",locations);
    // 停止定位  省电
//    [manager stopUpdatingLocation];
}

地理编码

// 1.创建地理编码对象
    CLGeocoder *geocoder = [[CLGeocoder alloc] init];
    // 2.地理编码
    // 异步  向苹果请求数据,调用此方法进行地理编码
   [geocoder geocodeAddressString:@"罗湖" completionHandler:^(NSArray<CLPlacemark *> * _Nullable placemarks, NSError * _Nullable error) {
        // 防错处理
        if (error) {
            NSLog(@"%@",error);
            return ;
        }
        // placemarks :所有的地标    一个CLPlacemark代表一个地标
        for (CLPlacemark *placemark in placemarks) {
            NSLog(@"%@",placemark.name);
            // 经度
            float longitudeValue = placemark.location.coordinate.longitude;
            NSLog(@"经度:%f",longitudeValue);
            // 纬度
            float latitudeValue = placemark.location.coordinate.latitude;
            NSLog(@"纬度:%f",latitudeValue);
            // 具体地址
            NSString *localityString = placemark.locality;
            NSString *addressString = placemark.name;
            NSLog(@"地址(市):%@",localityString);
            NSLog(@"地址(区):%@",addressString);
        }
    }];
输出结果

反地理编码

// 1.创建地理编码对象
    CLGeocoder *geocoder = [[CLGeocoder alloc] init];
    // 2.反地理编码
    // 2.1创建位置
    CLLocation *location = [[CLLocation alloc] initWithLatitude:22.5 longitude:112];
    // 2.2向苹果请求数据,调用反地理编码方法
    [geocoder reverseGeocodeLocation:location completionHandler:^(NSArray<CLPlacemark *> * _Nullable placemarks, NSError * _Nullable error) {
        // 2.3防错处理
        if (error) {
            NSLog(@"%@",error);
            return ;
        }
        // 2.4获取地标  在开发中给一个列表供用户选择
        CLPlacemark *placemark = placemarks[0];
        // 2.5赋值
        NSLog(@"城市名:%@",placemark.locality);
    }];
上一篇下一篇

猜你喜欢

热点阅读