IndoorMapSDK
室内地图SDK参考文档
 全部  函数 变量 属性
OIMFeature.h
1 //
2 // OIMFeature.h
3 // IndoorMapSDK
4 //
5 // Created by Macro on 15/11/30.
6 // Copyright © 2015年 Macro. All rights reserved.
7 //
8 
9 
10 
22 #import <Foundation/Foundation.h>
23 #import "OIMType.h"
24 
25 
31 @interface OIMFeature : NSObject
32 
41 @property(nonatomic, strong)NSString* pid;
42 
52 @property(nonatomic, strong)NSString* name;
53 
59 @property(nonatomic)int type;
60 
66 @property(nonatomic)int category;
67 
75 @property(nonatomic, strong)NSMutableDictionary* properties;
76 
84 @property(nonatomic, strong)NSMutableArray* features;
85 
93 @property(nonatomic, strong)NSMutableArray* points;
94 
95 
96 @end
97 
98 
104 @interface OIMFloor : OIMFeature
105 
114 @property(nonatomic)int floorNo;
115 
123 @property(nonatomic, strong)NSString* floorName;
124 
125 @end
126 
127 
134 
142 @property(nonatomic, readonly)int defaultFloorNo;
143 
149 @property(nonatomic)int floorCount;
150 
156 @property(nonatomic, strong)NSString* nameEN;
157 
158 @end
159 
160 
161 
167 @interface OIMPoi : OIMFeature
168 
174 @property(nonatomic)int floorNo;
175 
176 @end
177 
178 
179 
180 
楼层数据结构
Definition: OIMFeature.h:104
int category
Feature的高德分类
Definition: OIMFeature.h:66
室内POI数据结构定义
Definition: OIMFeature.h:31
NSMutableArray * points
Feature的几何信息
Definition: OIMFeature.h:93
int type
类型
Definition: OIMFeature.h:59
NSMutableDictionary * properties
其它的属性
Definition: OIMFeature.h:75
NSMutableArray * features
相关联的Feature列表
Definition: OIMFeature.h:84
室内POI数据结构
Definition: OIMFeature.h:167
建筑物数据结构
Definition: OIMFeature.h:133
NSString * name
名称
Definition: OIMFeature.h:52
NSString * pid
数据标识
Definition: OIMFeature.h:41