BaiduMap_IOSSDK_v6.6.1_Docs
BMKGeometryView.h
1 //
2 // BMKGeometryView.h
3 // MapComponent
4 //
5 // Created by zhangbaojin on 2021/7/28.
6 // Copyright © 2021 Baidu. All rights reserved.
7 //
8 
9 #import "BMKOverlayGLBasicView.h"
10 
11 NS_ASSUME_NONNULL_BEGIN
14 
18 @property (nonatomic, strong, nullable) UIColor *fillColor;
19 
23 @property (nonatomic, strong, nullable) UIColor *strokeColor;
24 
26 @property (nonatomic, assign) CGFloat lineWidth;
27 
29 @property (nonatomic, assign) BMKLineDashType lineDashType;
30 
31 @end
32 NS_ASSUME_NONNULL_END
BMKGeometryView
该类定义了一个用opengl绘制geometry的基类
Definition: BMKGeometryView.h:14
BMKGeometryView::fillColor
UIColor * fillColor
Definition: BMKGeometryView.h:18
BMKGeometryView::strokeColor
UIColor * strokeColor
Definition: BMKGeometryView.h:23
BMKGeometryView::lineWidth
CGFloat lineWidth
画笔宽度,默认为0
Definition: BMKGeometryView.h:26
BMKOverlayGLBasicView
该类定义了一个用opengl绘制的OverlayView的基类,如果需要用gdi进行绘制请继承于BMKOverlayPathView类
Definition: BMKOverlayGLBasicView.h:14
BMKGeometryView::lineDashType
BMKLineDashType lineDashType
虚线类型, since 5.0.0,默认kBMKLineDashTypeNone (仅支持颜色虚线)
Definition: BMKGeometryView.h:29