TencentMapSDK_iOS_3D_v1.3.3
QUserLocation.h
1 //
2 // QUserLocation.h
3 // QMap
4 //
5 // Created by songjian on 14-8-22.
6 // Copyright (c) 2014年 Tencent. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 #import "QAnnotation.h"
11 
12 @class CLLocation;
13 @class CLHeading;
14 
18 Q_EXTERN @interface QUserLocation : NSObject <QAnnotation>
19 
23 @property (readonly, nonatomic, getter = isUpdating) BOOL updating;
24 
28 @property (readonly, nonatomic, strong) CLLocation *location;
29 
33 @property (readonly, nonatomic, strong) CLHeading *heading;
34 
38 @property (nonatomic, copy) NSString *title;
39 
43 @property (nonatomic, copy) NSString *subtitle;
44 
45 @end
NSString * title
定位标注点要显示的标题信息
Definition: QUserLocation.h:38
CLLocation * location
位置信息, 如果QMapView的showsUserLocation为NO, 或者尚未定位成功, 则该值为nil
Definition: QUserLocation.h:28
BOOL updating
位置更新状态,如果正在更新位置信息,则该值为YES
Definition: QUserLocation.h:23
CLHeading * heading
heading信息, 只有在QUserTrackingModeFollowWithHeading模式下才有值
Definition: QUserLocation.h:33
定位信息类
Definition: QUserLocation.h:18
NSString * subtitle
定位标注点要显示的副标题信息
Definition: QUserLocation.h:43