1.CoreLocation框架使用前提:
#import <CoreLocation/CoreLocation.h>
CoreLocation框架中所有数据类型的前缀都是CL ,CoreLocation中使用CLLocationManager对象来做用户定位
2.CLLocationManager的常用操作:
开始用户定位 - (void)startUpdatingLocation;
停止用户定位 - (void) stopUpdatingLocation;
当调用了startUpdatingLocation方法后,就开始不断地定位用户的位置,中途会频繁地调用代理的下面方法
- (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations;
locations参数里面装着CLLocation对象
3.
CLLocation用来表示某个位置的地理信息,比如经纬度、海拔等等
@property(readonly, nonatomic) CLLocationCoordinate2D coordinate; 经纬度
@property(readonly, nonatomic) CLLocationDistance altitude; 海拔
@property(readonly, nonatomic) CLLocationDirection course; 路线,航向(取值范围是0.0° ~ 359.9°,0.0°代表真北方向)
@property(readonly, nonatomic) CLLocationSpeed speed; 行走速度(单位是m/s)
用- (CLLocationDistance)distanceFromLocation:(const CLLocation *)location方法可以计算2个位置之间的距离
@property(assign, nonatomic) CLLocationDistance distanceFilter; 每隔多少米定位一次
@property(assign, nonatomic) CLLocationAccuracy desiredAccuracy; 定位精确度(越精确就越耗电)
CLLocationCoordinate2D是一个用来表示经纬度的结构体,定义如下
typedef struct { CLLocationDegrees latitude; // 纬度 CLLocationDegrees longitude; // 经度 } CLLocationCoordinate2D;
一般用CLLocationCoordinate2DMake函数来创建CLLocationCoordinate2D
4.
如果是模拟器,需要设置模拟位置(经纬度) 天朝帝都的经纬度是:北纬40°,东经116°
5.
使用CLGeocoder可以完成“地理编码”和“反地理编码” 地理编码:根据给定的地名,获得具体的位置信息(比如经纬度、地址的全称等)
反地理编码:根据给定的经纬度,获得具体的位置信息 地理编码方法
- (void)geocodeAddressString:(NSString *)addressString completionHandler:(CLGeocodeCompletionHandler)completionHandler;
反地理编码方法
- (void)reverseGeocodeLocation:(CLLocation *)location completionHandler:(CLGeocodeCompletionHandler)completionHandler;
当地理\反地理编码完成时,就会调用CLGeocodeCompletionHandler typedef void (^CLGeocodeCompletionHandler)(NSArray *placemarks, NSError *error);
这个block传递2个参数 error :当编码出错时(比如编码不出具体的信息)有值 placemarks :里面装着CLPlacemark对象
CLPlacemark的字面意思是地标,封装详细的地址位置信息
@property (nonatomic, readonly) CLLocation *location; 地理位置
@property (nonatomic, readonly) CLRegion *region; 区域
@property (nonatomic, readonly) NSDictionary *addressDictionary;详细的地址信息
@property (nonatomic, readonly) NSString *name; 地址名称
@property (nonatomic, readonly) NSString *locality; 城市