TencentMapSDK_iOS_3D_v6.4.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
表示室内图的数据类.
定义 QIndoorInfo.h:15
点标注数据. 代表一个经纬度点位置的点状覆盖物的数据
定义 QPointAnnotation.h:16
NSString * subtitle
副标题
定义 QPointAnnotation.h:31
CGPoint lockedScreenPoint
固定到的屏幕指定坐标, 是在QMapView bounds 坐标系下。当 lockedToScreen == YES是有效。默认为CGPointZero. 运行时设置有效。
定义 QPointAnnotation.h:45
NSString * title
标题
定义 QPointAnnotation.h:26
QIndoorInfo * indoorInfo
室内位置
定义 QPointAnnotation.h:52
BOOL lockedToScreen
是否固定到屏幕坐标。默认为NO。运行时设置有效。
定义 QPointAnnotation.h:39
CLLocationCoordinate2D coordinate
经纬度
定义 QPointAnnotation.h:21
该类为一个抽象类,定义了QShape类的基本属性和行为,不能直接使用,必须子类化之后才能使用
定义 QShape.h:16
该类为标注点的protocol,提供了标注类的基本信息函数
定义 QAnnotation.h:16