欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

IOS开发笔记整理49之详解定位CLLocation

程序员文章站 2022-06-04 11:58:41
在项目功能中有一个定位cllocation的需求,遇到了一些知识难点,经过各位大侠的帮助,问题解决,特此分享供大家学习,希望大家共同学习进步。 一、简单说明 1.c...

在项目功能中有一个定位cllocation的需求,遇到了一些知识难点,经过各位大侠的帮助,问题解决,特此分享供大家学习,希望大家共同学习进步。

一、简单说明

1.cllocationmanager

cllocationmanager的常用操作和属性

开始用户定位- (void)startupdatinglocation;

停止用户定位- (void) stopupdatinglocation;

说明:当调用了startupdatinglocation方法后,就开始不断地定位用户的位置,中途会频繁地调用代理的下面方法

  - (void)locationmanager:(cllocationmanager *)manager didupdatelocations:(nsarray *)locations;

每隔多少米定位一次

  @property(assign, nonatomic) cllocationdistance distancefilter;

定位精确度(越精确就越耗电)

  @property(assign, nonatomic) cllocationaccuracy desiredaccuracy;

使用定位功能,首先要导入框架,遵守cllocationmanagerdelegate协议,再创建位置管理器cllocationmanager

在ios8.0后,定位功能需要在info.plist中加入nslocationwheninuseusagedescription和nslocationalwaysusagedescription这两个nsstring类型字段,才能够使用定位功能

代码贴出来与大家共勉,各位看官自行研究

{
  self.locationmanager = [[cllocationmanager alloc] init];
  _locationmanager.delegate = self;
  if([cllocationmanager locationservicesenabled] == no) {
   //  nslog(@"没有gps服务");
  }
  //地理位置精确度
  _locationmanager.desiredaccuracy=kcllocationaccuracynearesttenmeters;
  //设置距离筛选器,double类型,只要距离变化多少,就调用委托代理
  self.locationmanager.distancefilter = kcldistancefilternone; // meters
  [_locationmanager requestwheninuseauthorization];// 前台定位
  [_locationmanager startupdatinglocation];
}
- (void)locationmanager:(cllocationmanager *)manager
   didupdatelocations:(nsarray *)locations
{
  nslog(@"longitude = %f", ((cllocation *)[locations
                       lastobject]).coordinate.longitude);
  nslog(@"latitude = %f", ((cllocation *)[locations lastobject]).coordinate.latitude);
    cgfloat longti=((cllocation *)[locations
                    lastobject]).coordinate.longitude;
    cgfloat latti=((cllocation *)[locations lastobject]).coordinate.latitude;
    //将经度显示到label上
    _longitudelabel.text = [nsstring stringwithformat:@"%f",longti];
    //将纬度现实到label上
    _latitudelabel.text = [nsstring stringwithformat:@"%f",latti];
  // 获取当前所在的城市名
  clgeocoder *geocoder = [[clgeocoder alloc] init];
  //根据经纬度反向地理编译出地址信息
  [geocoder reversegeocodelocation:locations.lastobject completionhandler:^(nsarray *array, nserror *error)
   {
     if (array.count > 0)
     {
       clplacemark *placemark = [array objectatindex:0];
//       //将获得的所有信息显示到label上
//       self.location.text = placemark.name;
       //获取城市
       nsstring *city = placemark.locality;
       if (!city) {
         //四大直辖市的城市信息无法通过locality获得,只能通过获取省份的方法来获得(如果city为空,则可知为直辖市)
         city = placemark.administrativearea;
       }
      // nslog(@"city = %@", city);
       _cityname=city;
     }
     else if (error == nil && [array count] == 0)
     {
      // nslog(@"no results were returned.");
     }
     else if (error != nil)
     {
      // nslog(@"an error occurred = %@", error);
     }
   }];
  //系统会一直更新数据,直到选择停止更新,因为我们只需要获得一次经纬度即可,所以获取之后就停止更新
  [manager stopupdatinglocation];
}

以上是关于小编给大家整理的ios开发之详解定位cllocation,后续还会持续更新,希望大家能够喜欢。