TencentMapSDK_iOS_3D_v5.7.0
QAOILayer.h
1 //
2 // QAOILayer.h
3 // QMapKit
4 //
5 // Created by Keith Cao on 2020/5/20.
6 // Copyright © 2020 tencent. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 #import <UIKit/UIKit.h>
11 #import "QGeometry.h"
12 
13 NS_ASSUME_NONNULL_BEGIN
14 
18 @interface QAOILayer : NSObject
19 
23 @property (nonatomic, readonly) NSString *uid;
24 
28 @property (nonatomic, assign) CGFloat minZoom;
29 
33 @property (nonatomic, assign) CGFloat maxZoom;
34 
38 - (void)showSubPois:(BOOL)enable;
39 
44 - (instancetype)initWithUID:(NSString *)uid;
45 
46 @end
47 
48 NS_ASSUME_NONNULL_END
QAOILayer::maxZoom
CGFloat maxZoom
最大可以显示级别, 添加到地图后无法修改
Definition: QAOILayer.h:33
QAOILayer
AOILayer 类
Definition: QAOILayer.h:19
QAOILayer::uid
NSString * uid
AOILayer 的id
Definition: QAOILayer.h:23
QAOILayer::minZoom
CGFloat minZoom
最小可以显示级别, 添加到地图后无法修改
Definition: QAOILayer.h:28