TencentMapSDK_iOS_3D_v1.3.3
QPolygonView.h
1 //
2 // QPolygonView.h
3 // QMapKit
4 //
5 //
6 // Created by jeff on 14-8-4.
7 // Copyright (c) 2014年 Tencent. All rights reserved.
8 
9 #import <UIKit/UIKit.h>
10 
11 #import "QPolygon.h"
12 #import "QOverlayPathView.h"
13 
17 Q_EXTERN @interface QPolygonView : QOverlayPathView
18 
26 - (id)initWithPolygon:(QPolygon *)polygon;
27 
31 @property (nonatomic, readonly) QPolygon *polygon;
32 
33 @end
QPolygon * polygon
关联的QPolygon对象
Definition: QPolygonView.h:31
此类是QPolygon的显示多边形View,可以通过QOverlayPathView修改其fill和stroke属性来配置样式 ...
Definition: QPolygonView.h:17
此类用于定义一个由多个点组成的闭合多边形, 点与点之间按顺序尾部相连, 第一个点与最后一个点相连 ...
Definition: QPolygon.h:16
该类提供使用CGPathRef来绘制overlay
Definition: QOverlayPathView.h:19