TencentMapSDK_iOS_3D_v6.7.0
QMapView+IndoorCell.h
1 //
2 // QMapView+IndoorCell.h
3 // QMapKit
4 //
5 // Created by KeithCao on 2022/3/11.
6 // Copyright © 2022 tencent. All rights reserved.
7 //
8 
9 #import <QMapKit/QMapKit.h>
10 #import <UIKit/UIKit.h>
11 
12 NS_ASSUME_NONNULL_BEGIN
13 
17 @interface QIndoorCellStyle : NSObject
18 
22 @property (nonatomic, strong) UIColor *color;
23 
24 @end
25 
29 @interface QIndoorCellInfo : NSObject
30 
34 @property (nonatomic, strong) QIndoorCellStyle *style;
35 
39 @property (nonatomic, strong) NSArray <NSString *> *regions;
40 
41 @end
42 
43 
45 
49 - (void)setIndoorCell:(NSArray<QIndoorCellInfo *> *)cellInfo;
50 
54 - (void)resetIndoorCell;
55 
56 @end
57 
58 NS_ASSUME_NONNULL_END
QIndoorCellInfo
面样式的配置信息
Definition: QMapView+IndoorCell.h:30
QIndoorCellStyle
面样式的定义
Definition: QMapView+IndoorCell.h:18
QMapView(IndoorCell)
Definition: QMapView+IndoorCell.h:44
QIndoorCellStyle::color
UIColor * color
面颜色
Definition: QMapView+IndoorCell.h:22