TencentMapSDK_iOS_3D_v6.7.0
QPointAnnotation.h
1 //
2 // QPointAnnotation.h
3 // QMapKit
4 //
5 // Created by tabsong on 17/5/18.
6 // Copyright © 2017年 tencent. All rights reserved.
7 //
8 
9 #import "QShape.h"
10 #import "QAnnotation.h"
11 #import <CoreLocation/CoreLocation.h>
12 
17 
21 @property (nonatomic, assign) CLLocationCoordinate2D coordinate;
22 
26 @property (copy) NSString *title;
27 
31 @property (copy) NSString *subtitle;
32 
39 @property (nonatomic, assign) BOOL lockedToScreen;
40 
45 @property (nonatomic, assign) CGPoint lockedScreenPoint;
46 
52 @property (nonatomic, strong) QIndoorInfo *indoorInfo;
53 
54 @end
QShape
该类为一个抽象类,定义了QShape类的基本属性和行为,不能直接使用,必须子类化之后才能使用
Definition: QShape.h:16
QPointAnnotation::subtitle
NSString * subtitle
副标题
Definition: QPointAnnotation.h:31
QPointAnnotation::indoorInfo
QIndoorInfo * indoorInfo
室内位置
Definition: QPointAnnotation.h:52
QAnnotation-p
该类为标注点的protocol,提供了标注类的基本信息函数
Definition: QAnnotation.h:16
QPointAnnotation::title
NSString * title
标题
Definition: QPointAnnotation.h:26
QPointAnnotation::lockedScreenPoint
CGPoint lockedScreenPoint
固定到的屏幕指定坐标, 是在QMapView bounds 坐标系下。当 lockedToScreen == YES是有效。默认为CGPointZero. 运行时设置有效。
Definition: QPointAnnotation.h:45
QPointAnnotation::lockedToScreen
BOOL lockedToScreen
是否固定到屏幕坐标。默认为NO。运行时设置有效。
Definition: QPointAnnotation.h:39
QPointAnnotation::coordinate
CLLocationCoordinate2D coordinate
经纬度
Definition: QPointAnnotation.h:21
QIndoorInfo
表示室内图的数据类.
Definition: QIndoorInfo.h:15
QPointAnnotation
点标注数据. 代表一个经纬度点位置的点状覆盖物的数据
Definition: QPointAnnotation.h:16