BaiduMap_IOSSDK_v6.6.1_Docs
BMKUserLocation.h
1 //
2 // BMKUserLocation.h
3 // BaseComponent
4 //
5 // Created by Baidu on 3/26/14.
6 // Copyright (c) 2014 baidu. All rights reserved.
7 //
8 
9 #import <CoreLocation/CoreLocation.h>
10 
11 #ifndef BMKUserLocation_h
12 #define BMKUserLocation_h
13 @interface BMKUserLocation : NSObject
14 
16 @property (nonatomic, assign, getter=isUpdating) BOOL updating;
17 
19 @property (nonatomic, strong) CLLocation *location;
20 
22 @property (nonatomic, strong) CLHeading *heading;
23 
25 @property (nonatomic, copy) NSString *title;
26 
28 @property (nonatomic, copy) NSString *subtitle;
29 
30 @end
31 
32 #endif
BMKUserLocation::location
CLLocation * location
位置信息,尚未定位成功,则该值为nil
Definition: BMKUserLocation.h:19
BMKUserLocation::updating
BOOL updating
位置更新状态,如果正在更新位置信息,则该值为YES
Definition: BMKUserLocation.h:16
BMKUserLocation::subtitle
NSString * subtitle
定位标注点要显示的子标题信息
Definition: BMKUserLocation.h:28
BMKUserLocation::heading
CLHeading * heading
heading信息,尚未定位成功,则该值为nil
Definition: BMKUserLocation.h:22
BMKUserLocation::title
NSString * title
定位标注点要显示的标题信息
Definition: BMKUserLocation.h:25
BMKUserLocation
Definition: BMKUserLocation.h:14