单军华
2017-07-12 20d1260d26b028897f3c0935c12fc35aa37b2e93
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//
//  BMKUserLocation.h
//  BaseComponent
//
//  Created by Baidu on 3/26/14.
//  Copyright (c) 2014 baidu. All rights reserved.
//
#import <CoreLocation/CLLocation.h>
#import <Foundation/Foundation.h>
#import "BMKBaseComponent.h"
@class CLLocation;
@class CLHeading;
@interface BMKUserLocation : NSObject
 
/// 位置更新状态,如果正在更新位置信息,则该值为YES
@property (readonly, nonatomic, getter=isUpdating) BOOL updating;
 
/// 位置信息,尚未定位成功,则该值为nil
@property (readonly, nonatomic,strong) CLLocation *location;
 
/// heading信息,尚未定位成功,则该值为nil
@property (readonly, nonatomic, strong) CLHeading *heading;
 
/// 定位标注点要显示的标题信息
@property (strong, nonatomic) NSString *title;
 
/// 定位标注点要显示的子标题信息.
@property (strong, nonatomic) NSString *subtitle;
 
@end