TencentMapSDK_iOS_3D_v6.4.0
载入中...
搜索中...
未找到
QOverlayObject.h
1//
2// QOverlayObject.h
3// QMapKit
4//
5// Created by KeithCao on 2022/7/15.
6// Copyright © 2022 tencent. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10#import <CoreLocation/CoreLocation.h>
11
12NS_ASSUME_NONNULL_BEGIN
13
17@interface QOverlayObject : NSObject
18
22@property (nonatomic, assign) CLLocationCoordinate2D clickedPosition;
23
27@property (nonatomic, copy) NSString *identifier;
28
32@property (nonatomic, copy) NSString *name;
33
34@end
35
36NS_ASSUME_NONNULL_END
可被点击对象的抽象基类
定义 QOverlayObject.h:18
NSString * identifier
被点击对象的标识符
定义 QOverlayObject.h:27
CLLocationCoordinate2D clickedPosition
点击的经纬度
定义 QOverlayObject.h:22
NSString * name
被点击对象的名称,可能为空
定义 QOverlayObject.h:32