BaiduMap_IOSSDK_v6.6.2_Docs 6.6.2
载入中...
搜索中...
未找到
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 *buildingId;
26
28@property (nonatomic, copy) NSString *floorId;
29
31@property (nonatomic, copy) NSString *title;
32
34@property (nonatomic, copy) NSString *subtitle;
35
36@end
37
38#endif
Definition BMKUserLocation.h:14
CLHeading * heading
heading信息,尚未定位成功,则该值为nil
Definition BMKUserLocation.h:22
BOOL updating
位置更新状态,如果正在更新位置信息,则该值为YES
Definition BMKUserLocation.h:16
NSString * floorId
室内楼层
Definition BMKUserLocation.h:28
NSString * buildingId
室内Building ID
Definition BMKUserLocation.h:25
NSString * title
定位标注点要显示的标题信息
Definition BMKUserLocation.h:31
CLLocation * location
位置信息,尚未定位成功,则该值为nil
Definition BMKUserLocation.h:19
NSString * subtitle
定位标注点要显示的子标题信息
Definition BMKUserLocation.h:34