美文网首页
iOS获取当前定位位置经纬度及城市

iOS获取当前定位位置经纬度及城市

作者: 默默的学习 | 来源:发表于2018-07-12 14:31 被阅读0次

.m

#import <CoreLocation/CoreLocation.h>

@interface HomeViewController ()<CLLocationManagerDelegate>{

NSString* currentCity;//当前城市

}

@property (strong, nonatomic) CLLocationManager* locationManager; 

- (void)viewDidLoad {

    [super viewDidLoad];

    // Do any additional setup after loading the view.

    [self startLocation];

}

#pragma mark---------判断定位操作是否被允许-----------

-(void)startLocation{

if ([CLLocationManager locationServicesEnabled]) {//判断定位操作是否被允许

        self.locationManager= [[CLLocationManager alloc]init];

        self.locationManager.delegate = self;//遵循代理

        self.locationManager.desiredAccuracy = kCLLocationAccuracyBest;

        self.locationManager.distanceFilter = 10.0f;

        [_locationManager requestWhenInUseAuthorization];//使用程序其间允许访问位置数据(iOS8以上版本定位需要)

        [self.locationManager startUpdatingLocation];//开始定位

    }else{//不能定位用户的位置的情况再次进行判断,并给与用户提示

        //1.提醒用户检查当前的网络状况

        //2.提醒用户打开定位开关

            UIAlertController* alertVC = [UIAlertControlleralertControllerWithTitle:@"允许\"定位\"提示"message:@"请在设置中打开定位"preferredStyle:UIAlertControllerStyleAlert];

            UIAlertAction* ok = [UIAlertActionactionWithTitle:@"打开定位"style:UIAlertActionStyleDefaulthandler:^(UIAlertAction*_Nonnullaction) {

                //打开定位设置

                NSURL*settingsURL = [NSURLURLWithString:UIApplicationOpenSettingsURLString];

                [[UIApplicationsharedApplication]openURL:settingsURL];

            }];

            UIAlertAction * cancel = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {

            }];

            [alertVCaddAction:cancel];

            [alertVCaddAction:ok];

            [self presentViewController:alertVC animated:YES completion:nil];

    }

}

#pragma mark---------定位成功---------

- (void)locationManager:(CLLocationManager*)manager didUpdateLocations:(NSArray*)locations{

    //当前所在城市的坐标值

    CLLocation*currLocation = [locations lastObject];

   // NSLog(@"当前经度=%f 当前纬度=%f 当前高度=%f", currLocation.coordinate.latitude, currLocation.coordinate.longitude, currLocation.altitude);

    //根据经纬度反向地理编译出地址信息

    CLGeocoder* geoCoder = [[CLGeocoderalloc]init];

    [geoCoderreverseGeocodeLocation:currLocationcompletionHandler:^(NSArray*placemarks,NSError*error) {

                if(placemarks.count>0) {

                    CLPlacemark*placeMark = placemarks[0];

                    currentCity= placeMark.locality;

                    if(!currentCity) {

                        currentCity=@"无法定位当前城市";

                    }

                   // NSLog(@"%@",currentCity); //这就是当前的城市

                 //   NSLog(@"%@",placeMark.name);//具体地址:  xx市xx区xx街道

                //

//        for (CLPlacemark * placemark in placemarks) {

//

//            NSDictionary *address = [placemark addressDictionary];

//

//            //  Country(国家)  State(省)  City(市)

//            NSLog(@"#####%@",address);//所有返回属性


//

//            NSLog(@"%@", [address objectForKey:@"Country"]);

//

//            NSLog(@"%@", [address objectForKey:@"State"]);

//

//            NSLog(@"%@", [address objectForKey:@"City"]);

//

//        }

    }];

}

#pragma mark---------定位失败-----------

-(void)locationManager:(CLLocationManager*)manager didFailWithError:(NSError*)error{

    if([errorcode] ==kCLErrorDenied){

        //访问被拒绝

        ALERT(@"提示", @"位置访问被拒绝");

    }

    if ([error code] == kCLErrorLocationUnknown) {

        //无法获取位置信息

        ALERT(@"提示", @"无法获取位置信息");

    }

}

相关文章

  • 高德定位和大头针的添加

    自动定位当前城市的经纬度 长按地图获取当前位置的经纬度并且逆地址编码出城市及具体位置 在指定的经纬度添加大头针

  • CLLocationManager定位和ibeacon的检测

    一.iOS自带的定位 iOS通过自带的CoreLocation 框架可以获取用户的当前位置,城市,经纬度等信息。 ...

  • iOS获取当前定位位置经纬度及城市

    .m #import @interface HomeV...

  • cesium 2 获取鼠标当前位置的经纬度高度

    2 获取鼠标当前位置的经纬度高度 鼠标移动时,实时获取当前鼠标位置的经纬度,相机高度与地图层级。可以在info.v...

  • iOS手机定位实现

    当前内容适用于真机定位 不支持模拟器定位 可以获取当前的位置和经纬度 项目中有用到,拿来分享,大神勿喷,欢迎交流 ...

  • 地图和定位(三)

    一、地理编码和反地理编码 地理编码:把地址转为经纬度反地理编码:把经纬度转为地址 二、获取当前城市名称(定位+反地...

  • 百度地图

    导入代理方法初始化-开启定位服务调用代理方法获取经纬度停止位置更新利用经纬度使用搜索,搜索坐标获取位置代码 官方的...

  • 使用CoreLocation获取地理位置

    在手机上获取的地理位置信息分为两类: 当前位置的经纬度信息 当前位置根据经纬度逆编码后的地理名称 一、概述 通过C...

  • IOS Swift3 使用 CLLocationManager

    CLLocationManager 是iOS系统提供的定位对象,通过该对象可以获取定位信息,包括:经纬度、海拔、方...

  • iOS怎样获取当前手机的地理位置和经纬度

    目录 app常见需求(获取当前手机经纬度 地址 精确到省市和街道)并且需要通过经纬度计算出当前位置距离某个商店(确...

网友评论

      本文标题:iOS获取当前定位位置经纬度及城市

      本文链接:https://www.haomeiwen.com/subject/nqxrpftx.html