9 #import <CoreLocation/CoreLocation.h>
11 #ifndef BMKUserLocation_h
12 #define BMKUserLocation_h
16 @property (nonatomic, assign, getter=isUpdating) BOOL
updating;
19 @property (nonatomic, strong) CLLocation *
location;
22 @property (nonatomic, strong) CLHeading *
heading;
25 @property (nonatomic, copy) NSString *
title;
28 @property (nonatomic, copy) NSString *
subtitle;
Definition: BMKUserLocation.h:14
CLHeading * heading
heading信息,尚未定位成功,则该值为nil
Definition: BMKUserLocation.h:22
BOOL updating
位置更新状态,如果正在更新位置信息,则该值为YES
Definition: BMKUserLocation.h:16
NSString * title
定位标注点要显示的标题信息
Definition: BMKUserLocation.h:25
CLLocation * location
位置信息,尚未定位成功,则该值为nil
Definition: BMKUserLocation.h:19
NSString * subtitle
定位标注点要显示的子标题信息
Definition: BMKUserLocation.h:28