iOS开发中想要实现导航(去陌生的地方),周边(找餐厅,酒店,银行等)等功能,都有用到地图和定位功能.要想实现这两个功能就需要导入两个框架.
Map Kit: 用于地图展示
Core Location:用于地理定位
(两个热门的专业术语
LBS : Location Based Service(基于定位的服务)
SoLoMo : Social Local Mobile(索罗门))
Core Location框架的使用
导入框架
xcode5以前需要手动导入,5以后会自动导入
CoreLocation框架使用前提
导入主头文件
#import<CoreLocation/CoreLocation.h>
CoreLocation框架使用须知
CoreLocation框架中所有数据类型的前缀都是CL
CoreLocation中使用CLLocationManager对象来做用户定位
CLLocationManager的常用操作
开始用户定位
- (void)startUpdatingLocation;
停止用户定位
- (void) stopUpdatingLocation;
当调用了startUpdatingLocation方法后,就开始不断地定位用户的位置,中途会频繁地调用代理的下面方法
- (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations;
locations参数里面装着CLLocation对象
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
明天接着更新代码;