作者:2659739627


IOS中的core location提供了定位功能,能定位装置的当前坐标,同时能得到装置移动信息。因为对定位装置的轮询是很耗电的,所以最好只在非常必要的前提下启动。

其中,最重要的类是CLLocationManager,定位管理。

其定位有3种方式:

1,GPS,最精确的定位方式,貌似iphone1是不支持的。

2,蜂窝基站三角定位,这种定位在信号基站比较秘籍的城市比较准确。

3,Wifi,这种方式貌似是通过网络运营商的数据库得到的数据,在3种定位种最不精确

使用方式:

1,引入CoreLocation的包,一般的默认模板里是没有的,所以需要手动导入。

2,通过启动CLLocationManager来启动定位服务,因为定位信息是需要轮询的,而且对于程序来说是需要一定时间才会得到的,所以翠玉lcationManager的操作大多都给委托来完成。

加载locationManager的代码:


1. CLLocationManager *locationManager = [[CLLocationManager alloc] init];//创建位置管理器  
2. locationManager.delegate=self;  
3. locationManager.desiredAccuracy=kCLLocationAccuracyBest;  
4. locationManager.distanceFilter=1000.0f;  
5. //启动位置更新  
6. [locationManager startUpdatingLocation];


CLLocationManager *locationManager = [[CLLocationManager alloc] init];//创建位置管理器 locationManager.delegate=self; locationManager.desiredAccuracy=kCLLocationAccuracyBest; locationManager.distanceFilter=1000.0f; //启动位置更新 [locationManager startUpdatingLocation];desiredAccuracy为设置定位的精度,可以设为最优,装置会自动用最精确的方式去定位。


distanceFilter是距离过滤器,为了减少对定位装置的轮询次数,位置的改变不会每次都去通知委托,而是在移动了足够的距离时才通知委托程序,它的单位是米,这里设置为至少移动1000再通知委托处理更新。

startUpdatingLocation就是启动定位管理了,一般来说,在不需要更新定位时最好关闭它,用stopUpdatingLocation,可以节省电量。

对于委托CLLocationManagerDelegate,最常用的方法是:


-(void)locationManager:(CLLocationManager *)manager
 
        
{
//   
   NSString *currentLatitude = [[NSString alloc] 
                                initWithFormat:@"%g", 
                               
  
   
//   
   NSString *currentLongitude = [[NSString alloc] 
                                
                                
  
   
//   
   NSString *currentHorizontalAccuracy = 
   [[NSString alloc] 
   
   
   horizontalAccuracy.text = currentHorizontalAccuracy;
   
   NSString *currentAltitude = [[NSString alloc] 
                                initWithFormat:@"%g",                                                          
                               
  
   
   NSString *currentVerticalAccuracy = 
   [[NSString alloc] 
   
   
  
   
  
      
   
  
                                        
   
   NSString *tripString = [[NSString alloc] 
                           initWithFormat:@"%f", 
                          
   distance.text = tripString;   

  
  
  
      
           
          
          
          
       }    
  
}

这个方法即定位改变时委托会执行的方法。

可以得到新位置,旧位置,CLLocation里面有经度纬度的坐标值,

同时CLLocation还有个属性horizontalAccuracy,用来得到水平上的精确度,它的大小就是定位精度的半径,单位为米。

如果值为-1,则说明此定位不可信。

另外委托还有一个常用方法是

- (void)locationManager:(CLLocationManager *)manager

当定位出现错误时就会调用这个方法。

关于coreLocation - 地理位置反向编码

CoreLocation中得到的定位信息都是以经度和纬度等表示的地理信息,很多时候我们需要把它反向编码成普通人能读懂的地理位置描述如:X国XX市XXX区XXX街道XX号,这就需要用到MapKit中的一个地理位置反向编码工具:MKReverseGeocoder,

用法:

首先要实现协议MKReverseGeocoderDelegate,因为将坐标信息发到服务器再反回来需要一定的时间,所以为了防止阻塞,发出信息后并不知到什么时候会返回信息,信息返回时会通知委托方法。这里实现这个类主要时为了实现2个方法如下:



    1. - (void)reverseGeocoder:(MKReverseGeocoder *)geocoder didFailWithError:(NSError *)error{  
    2.    NSLog(@"MKReverseGeocoder has failed.");  
    3. }  
    4. - (void)reverseGeocoder:(MKReverseGeocoder *)geocoder didFindPlacemark:(MKPlacemark *)placemark{  
    5.      
    6.    NSLog(@"当前地理信息为:%@",placemark);  
    7. }



    didFailWithError这个方法是来处理返回错误信息的,didFindPlacemark则是地理信息返回了,地理信息包含在placemark里面,此对象中包含国家,城市,区块,街道等成员变量。


    2,然后可以init一个反向编码器,然后发出请求了:



      1. MKReverseGeocoder *reverseGeocoder =[[MKReverseGeocoder alloc] initWithCoordinate:coordinate];  
      2.    NSLog(@"%g",coordinate.latitude);  
      3.    NSLog(@"%g",coordinate.longitude);  
      4.    reverseGeocoder.delegate = self;  
      5.    [reverseGeocoder start];



      MKReverseGeocoder除了start方法,还有cancel方法来取消请求。