8 #import <CoreLocation/CLLocation.h> 9 #import <Foundation/Foundation.h> 10 #import "BMKBaseComponent.h" 16 @property (readonly, nonatomic, getter=isUpdating) BOOL
updating;
19 @property (readonly, nonatomic,strong) CLLocation *
location;
22 @property (readonly, nonatomic, strong) CLHeading *
heading;
25 @property (strong, nonatomic) NSString *
title;
28 @property (strong, nonatomic) 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