Map Doc  1.0
iOS-引擎SDK-开放平台
MBReverseGeocoderResult.h
浏览该文件的文档.
1 //
2 // MBReverseGeocoderResult.h
3 // iNaviCore
4 //
5 // Created by renzc on 2017/12/15.
6 // Copyright © 2017年 Mapbar. All rights reserved.
7 //
8 
9 #import "MBObject.h"
10 #import "MBPoiBaseTypes.h"
11 @class MBPoiFavorite;
12 
13 /*
14  * 逆地理结果实体类
15  */
16 @interface MBReverseGeocoderResult : MBObject <NSCoding>
17 
18 /*
19  * 显示坐标(如公园的中心点) 与导航坐标可能一致也可能不一致
20  */
21 @property (nonatomic, readonly, assign) MBPoint position;
22 
23 /*
24  * 导航坐标(如公园的入口)
25  */
26 @property (nonatomic, readonly, assign) MBPoint entryPoint;
27 
28 /*
29  * 与搜索中心点的距离(?)
30  */
31 @property (nonatomic, readonly, assign) NSInteger distance;
32 
33 /*
34  * 道路距离(?)
35  */
36 @property (nonatomic, readonly, assign) NSInteger roadDistance;
37 
38 /*
39  * Poi 类型码
40  */
41 @property (nonatomic, readonly, assign) MBPoiType naviInfoTypeId;
42 
43 /*
44  * 省
45  */
46 @property (nonatomic, readonly, copy) NSString *province;
47 
48 /*
49  * 城市
50  */
51 @property (nonatomic, readonly, copy) NSString *city;
52 
53 /*
54  * 区域
55  */
56 @property (nonatomic, readonly, copy) NSString *area;
57 
58 /*
59  * 类型
60  */
61 @property (nonatomic, readonly, copy) NSString *typeName;
62 
63 /*
64  * 兴趣点方向
65  */
66 @property (nonatomic, readonly, copy) NSString *poiDirection;
67 
68 /*
69  * 兴趣点行政区
70  */
71 @property (nonatomic, readonly, copy) NSString *poiArea;
72 
73 /*
74  * 兴趣点城市
75  */
76 @property (nonatomic, readonly, copy) NSString *poiCity;
77 
78 /*
79  * 兴趣点名称
80  */
81 @property (nonatomic, readonly, copy) NSString *poiName;
82 
83 /*
84  * 地址
85  */
86 @property (nonatomic, readonly, copy) NSString *poiAddress;
87 
88 /*
89  * 道路名称
90  */
91 @property (nonatomic, readonly, copy) NSString *roadName;
92 
93 /*
94  * 道路方向
95  */
96 @property (nonatomic, readonly, copy) NSString *roadDirection;
97 
98 /*
99  * 道路级别
100  */
101 @property (nonatomic, readonly, copy) NSString *roadLevel;
102 
103 /*
104  * 组合Id
105  */
106 @property (nonatomic, readonly, assign) int64_t compoundId;
107 @end
NSString * area
Definition: MBReverseGeocoderResult.h:56
MBPoint position
Definition: MBReverseGeocoderResult.h:21
NSString * typeName
Definition: MBReverseGeocoderResult.h:61
NSString * roadDirection
Definition: MBReverseGeocoderResult.h:96
unsigned int MBPoiType
旧搜索(PoiQuery)的 Poi 类型码
Definition: MBPoiBaseTypes.h:18
NSInteger roadDistance
Definition: MBReverseGeocoderResult.h:36
NSInteger distance
Definition: MBReverseGeocoderResult.h:31
MBPoiType naviInfoTypeId
Definition: MBReverseGeocoderResult.h:41
NSString * city
Definition: MBReverseGeocoderResult.h:51
兴趣点( Poi )实体类
Definition: MBPoiFavorite.h:13
MBPoint entryPoint
Definition: MBReverseGeocoderResult.h:26
NSString * poiCity
Definition: MBReverseGeocoderResult.h:76
NSString * poiName
Definition: MBReverseGeocoderResult.h:81
NSString * roadLevel
Definition: MBReverseGeocoderResult.h:101
Definition: MBObject.h:16
NSString * province
Definition: MBReverseGeocoderResult.h:46
NSString * poiAddress
Definition: MBReverseGeocoderResult.h:86
NSString * roadName
Definition: MBReverseGeocoderResult.h:91
int64_t compoundId
Definition: MBReverseGeocoderResult.h:106
Definition: MBReverseGeocoderResult.h:16
NSString * poiDirection
Definition: MBReverseGeocoderResult.h:66
Definition: MBNaviCoreBase.h:31
NSString * poiArea
Definition: MBReverseGeocoderResult.h:71