TencentMapSDK_iOS_3D_v6.4.0
载入中...
搜索中...
未找到
QOverlayPathView.h
1//
2// QOverlayPathView.h
3// QMapKit
4//
5// Created by fan on 2017/5/17.
6// Copyright © 2017年 Tencent. All rights reserved.
7//
8
9#import "QOverlayView.h"
10
17
21@property(nonatomic, strong) UIColor *fillColor;
22
26@property(nonatomic, strong) UIColor *strokeColor;
27
31@property(nonatomic, assign) CGFloat lineWidth;
32
36@property (nonatomic, assign) CGFloat alpha;
37
38@end
该类提供基于几何路径的overlay
定义 QOverlayPathView.h:17
CGFloat alpha
透明度[0,1],默认为1.
定义 QOverlayPathView.h:36
UIColor * strokeColor
画笔颜色
定义 QOverlayPathView.h:26
CGFloat lineWidth
画笔宽度. 单位:CGPoint长度.
定义 QOverlayPathView.h:31
UIColor * fillColor
填充颜色
定义 QOverlayPathView.h:21
该类是地图覆盖物View的基类, 提供了绘制overlay的接口, 但是没有实际实现。希望不要直接实例化
定义 QOverlayView.h:17