TencentMapSDK_iOS_3D_v6.8.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
12NS_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
44@interface QMapView (IndoorCell)
45
49- (void)setIndoorCell:(NSArray<QIndoorCellInfo *> *)cellInfo;
50
55
56@end
57
58NS_ASSUME_NONNULL_END
void resetIndoorCell()
清除自定义面样式(恢复默认样式), 需在面所在室内图激活时调用
面样式的配置信息
定义 QMapView+IndoorCell.h:30
NSArray< NSString * > * regions
面id列表
定义 QMapView+IndoorCell.h:39
QIndoorCellStyle * style
面样式
定义 QMapView+IndoorCell.h:34
面样式的定义
定义 QMapView+IndoorCell.h:18
UIColor * color
面颜色
定义 QMapView+IndoorCell.h:22