CoreLocation(地理定位)的深入理解

一、CLLocation的使用

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

// 经纬度
@property(readonly, nonatomic) CLLocationCoordinate2D coordinate;

// 海拔
@property(readonly, nonatomic) CLLocationDistance altitude;

// 路线,航向(取值范围是0.0° ~ 359.9°,0.0°代表真北方向)
@property(readonly, nonatomic) CLLocationDirection course;

// 行走速度(单位是m/s)
@property(readonly, nonatomic) CLLocationSpeed speed;

// 定位信息返回的时间
@property(readonly, nonatomic, copy) NSDate *timestamp;

// 水平精准度
@property(readonly, nonatomic) CLLocationAccuracy horizontalAccuracy;

// 垂直精准度
@property(readonly, nonatomic) CLLocationAccuracy verticalAccuracy;

// 可以计算2个位置之间的距离
- (CLLocationDistance)distanceFromLocation:(const CLLocation *) location

// 计算两次的距离(单位时米)
CLLocationDistance distance = [newLocation distanceFromLocation:self.previousLocation];

// 计算两次之间的时间(单位只秒)
NSTimeInterval dTime= [newLocation.timestamp timeIntervalSinceDate:self.previousLocation.timestamp];

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

typedef struct {

      CLLocationDegrees latitude; // 纬度

      CLLocationDegrees longitude; // 经度

} CLLocationCoordinate2D;

一般用CLLocationCoordinate2DMake函数来创建CLLocationCoordinate2D。

二、区域检测

  1. 开始检测用户所在的区域
  // 1、创建中心点
CLLocationCoordinate2Dcenter = CLLocationCoordinate2DMake(45.058501, 120.304171);

  //2、创建圆形区域, 指定区域中心点的经纬度,以及半径
CLCircularRegion*circular = [[CLCircularRegion alloc] initWithCenter:center radius:500 identifier:@"中关村软件园"];
    [self.manager startMonitoringForRegion:circular];

注意:CLRegion 有两个子类是专门用于指定区域的:

  • CLBeaconRegion:可以指定蓝牙的范围
  • CLCircularRegion:可以指定圆形的范围

2.实现CLLocationManager 的代理方法


// 进入监听区域时调用
- (void)locationManager:(CLLocationManager *)manager didEnterRegion:  (CLRegion *)region {
 NSLog(@"进入监听区域时调用");
}

// 离开监听区域时调用
- (void)locationManager:(CLLocationManager *)manager didExitRegion:  (CLRegion *)region {
 NSLog(@"离开监听区域时调用");
}

      ```

#三、CLGeocoder(地理编码和反地理编码)
1.地理编码:根据给定的地名,获得具体的位置信息(比如经纬度、地址的全称等)。
 地理编码的实现:
-   导入#import 
-   懒加载CLGeocoder地理编码对象。
-   获取用户的位置
-   利用地理编码对象,根据传入的地址获取该地址对应的经纬度信息。

[self.geocoder geocodeAddressString:addressStr completionHandler:^(NSArray *placemarks, NSError *error) {
if (placemarks.count == 0 || error != nil) {
return ;
}
for (CLPlacemark *placemark in placemarks) {
NSLog(@"%@ %@ %f %f",placemark.name,placemark.addressDictionary,
placemark.location.coordinate.latitude,placemark.location.coordinate.longitude);
}
}];


2.反地理编码:根据给定的经纬度,获得具体的位置信息。
    反地理编码的实现:
   -   导入#import 
   -   懒加载CLGeocoder地理编码对象。
   -   获取用户的经纬度
   -   根据经纬度创建CLLocation对象
   -   利用地理编码对象,根据传入的经纬度获取该地址对应的地标信息。

CLLocation *location = [[CLLocation alloc] initWithLatitude:[latitude doubleValue]  longitude:[longtitude doubleValue]];

[self.geocoder reverseGeocodeLocation:location

completionHandler:^(NSArray *placemarks, NSError *error) {
for (CLPlacemark *placemark in placemarks) {
NSLog(@"%@ %@ %f %f",placemark.name,placemark.addressDictionary,placemark.location.coordinate.latitude, placemark.location.coordinate.longitude);
}
}];


#四、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(地理定位)的深入理解)