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;
BOOL updating
位置更新状态,如果正在更新位置信息,则该值为YES
Definition: BMKUserLocation.h:16
NSString * title
定位标注点要显示的标题信息
Definition: BMKUserLocation.h:25
CLLocation * location
位置信息,尚未定位成功,则该值为nil
Definition: BMKUserLocation.h:19
CLHeading * heading
heading信息,尚未定位成功,则该值为nil
Definition: BMKUserLocation.h:22
NSString * subtitle
定位标注点要显示的子标题信息
Definition: BMKUserLocation.h:28
Definition: BMKUserLocation.h:13