Blame view

Pods/AMap3DMap/MAMapKit.framework/Headers/MAIndoorInfo.h 1.41 KB
75d24c15   yangbin   123
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
  //
  //  MAIndoorInfo.h
  //  MAMapKit
  //
  //  Created by 翁乐 on 5/6/16.
  //  Copyright © 2016 Amap. All rights reserved.
  //
  
  #import "MAConfig.h"
  
  #if MA_INCLUDE_INDOOR
  
  #import <Foundation/Foundation.h>
  
  ///室内楼层信息
  @interface MAIndoorFloorInfo : NSObject
  ///楼层名
  @property (nonatomic, readonly) NSString *floorName;
  ///楼层index
  @property (nonatomic, readonly) int floorIndex;
  ///楼层别名
  @property (nonatomic, readonly) NSString *floorNona;
  ///是否属于停车场
  @property (nonatomic, readonly) BOOL isPark;
  @end
  
  ///室内图信息
  @interface MAIndoorInfo : NSObject
  ///室内地图中文名
  @property (nonatomic, readonly) NSString *cnName;
  ///室内地图英文名
  @property (nonatomic, readonly) NSString *enName;
  ///室内地图poiID
  @property (nonatomic, readonly) NSString *poiID;
  ///建筑类型
  @property (nonatomic, readonly) NSString *buildingType;
  ///当前楼层index,和floorInfo内部的index相关
  @property (nonatomic, readonly) int activeFloorIndex;
  ///当前激活的楼层,只和floorInfo相关,与floorInfo内部元素的index无关
  @property (nonatomic, readonly) int activeFloorInfoIndex;
  /// MAIndoorFloorInfo 组成,可直接通过 activeFloorInfoIndex 取出当前楼层
  @property (nonatomic, readonly) NSArray *floorInfo;
  ///楼层数量
  @property (nonatomic, readonly) int numberOfFloor;
  ///停车场楼层数量
  @property (nonatomic, readonly) int numberOfParkFloor;
  @end
  
  #endif