CoreLocation的使用

CoreLocation的使用_第1张图片
CoreLocation的使用_第2张图片

CLLocationManager

CLLocationManager的常用操作

开始更新用户位置

- (void)startUpdatingLocation;

停止更新用户位置

- (void)stopUpdatingLocation;

当调用了startUpdatingLocation方法后,就开始不断地请求、刷新用户的位置,一旦请求到用户位置就会调用代理的下面方法

- (void)locationManager:(CLLocationManager*)managerdidUpdateLocations:(NSArray*)locations;

locations参数里面装着CLLocation对象

为了严谨起见,最好在使用定位功能之前判断当前应用的定位功能是否可用

CLLocationManager有个类方法可以判断当前应用的定位功能是否可用

+ (BOOL)locationServicesEnabled;

@property(assign,nonatomic)CLLocationDistancedistanceFilter;

每隔多少米定位一次

@property(assign,nonatomic)CLLocationAccuracydesiredAccuracy;

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

CLLocation

CLLocation用来表示某个位置的地理信息,比如经纬度、海拔等等

@property(readonly,nonatomic)CLLocationCoordinate2Dcoordinate;

经纬度

@property(readonly,nonatomic)CLLocationDistancealtitude;

海拔

@property(readonly,nonatomic)CLLocationDirectioncourse;

路线,航向(取值范围是0.0°~359.9°,0.0°代表真北方向)

@property(readonly,nonatomic)CLLocationSpeedspeed;

移动速度(单位是m/s)

用- (CLLocationDistance)distanceFromLocation:(constCLLocation*)location方法可以计算2个位置之间的距离


CoreLocation的使用_第3张图片
CoreLocation的使用_第4张图片
CoreLocation的使用_第5张图片

iOS 9.0 定位补充

iOS9.0如果当前处于前台授权状态,默认是不可以后台获取用户位置。但可以设置以下属性为YES,就可以继续获取后台位置,但是会出现蓝条

@property(assign,nonatomic) BOOLallowsBackgroundLocationUpdates

使用注意:必须设置对应的后台模式:locationupdates

iOS9.0可以单次请求用户位置

- (void)requestLocation

-(void)locationManager:(nonnullCLLocationManager*)managerdidUpdateLocations:(nonnullNSArray *)locations//成功调用

p-(void)locationManager:(nonnullCLLocationManager*)managerdidFailWithError:(nonnullNSError*)error//失败调用

CLLocationCoordinate2D

CLLocationCoordinate2D是一个用来表示经纬度的结构体,定义如下

typedef struct{

CLLocationDegreeslatitude;//纬度

CLLocationDegreeslongitude;//经度

}CLLocationCoordinate2D;

一般用CLLocationCoordinate2DMake函数来创建CLLocationCoordinate2D


CoreLocation的使用_第6张图片
CoreLocation的使用_第7张图片
CoreLocation的使用_第8张图片

CLGeocoder

使用CLGeocoder可以完成“地理编码”和“反地理编码”

地理编码:根据给定的地名,获得具体的位置信息(比如经纬度、地址的全称等)

反地理编码:根据给定的经纬度,获得具体的位置信息

地理编码方法

- (void)geocodeAddressString:(NSString*)addressStringcompletionHandler:(CLGeocodeCompletionHandler)completionHandler;

反地理编码方法

- (void)reverseGeocodeLocation:(CLLocation*)locationcompletionHandler:(CLGeocodeCompletionHandler)completionHandler;

CLGeocodeCompletionHandler

当地理\反地理编码完成时,就会调用CLGeocodeCompletionHandler

typedef void(^CLGeocodeCompletionHandler)(NSArray*placemarks, NSError *error);

这个block传递2个参数

error:当编码出错时(比如编码不出具体的信息)有值

placemarks:里面装着CLPlacemark对象

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;

城市


CoreLocation的使用_第9张图片

你可能感兴趣的:(CoreLocation的使用)