TencentMapSDK_iOS_3D_v6.7.0
QPolygon.h
1 //
2 // QPolygon.h
3 // QMapKit
4 //
5 // Created by fan on 2017/5/19.
6 // Copyright © 2017年 tencent. All rights reserved.
7 //
8 
9 #import "QMultiPoint.h"
10 
14 @interface QPolygon : QMultiPoint
15 
19 @property(nonatomic, readonly) QMapRect boundingMapRect;
20 
28 @property (nonatomic, copy) NSArray<QPolygon *> *interiorPolygons;
29 
38 + (QPolygon *)polygonWithCoordinates:(CLLocationCoordinate2D *)coords count:(NSUInteger)count;
39 
48 + (QPolygon *)polygonWithPoints:(QMapPoint *)points count:(NSUInteger)count;
49 
58 -(id)initWithWithCoordinates:(CLLocationCoordinate2D *)coords count:(NSUInteger)count;
59 
68 - (id)initWithPoints:(QMapPoint *)points count:(NSUInteger)count;
69 
70 @end
QPolygon::interiorPolygons
NSArray< QPolygon * > * interiorPolygons
Polygon内的洞. 多边形洞的数据要求:
Definition: QPolygon.h:28
QPolygon::boundingMapRect
QMapRect boundingMapRect
区域外接矩形. 此类用于定义一个由多个点组成的闭合多边形, 点与点之间按顺序尾部相连, 第一个点与最后一个点相连
Definition: QPolygon.h:19
QMapRect
平面投影矩形结构定义
Definition: QGeometry.h:92
QMultiPoint
该类是个由多个点组成的虚基类
Definition: QMultiPoint.h:17
QMapPoint
平面投影坐标结构定义
Definition: QGeometry.h:74
QPolygon
面覆盖物
Definition: QPolygon.h:15