9 #import <UIKit/UIKit.h> 10 #import "BMKOverlayView.h" 19 @property (strong, nonatomic) UIColor *fillColor;
23 @property (strong, nonatomic) UIColor *strokeColor;
26 @property (nonatomic,assign) CGFloat lineWidth;
29 @property CGPathRef path;
32 @property (nonatomic) BOOL lineDash __deprecated_msg(
"已废弃since 5.0.0,已废弃,请使用lineDashType绘制虚线");
35 @property (assign, nonatomic) BOOL tileTexture __deprecated_msg(
"已废弃since 5.0.0");
38 @property (assign, nonatomic) BOOL keepScale;
41 @property(assign,nonatomic)BMKLineJoinType lineJoinType;
44 @property(assign,nonatomic)BMKLineCapType lineCapType;
47 @property(assign,nonatomic)BMKLineDashType lineDashType;
该类是地图覆盖物View的基类,提供绘制overlay的接口但本身并无实现,所有地图覆盖物View需要继承自此类
Definition: BMKOverlayView.h:13
该类定义了一个用opengl绘制的OverlayView的基类,如果需要用gdi进行绘制请继承于BMKOverlayPathView类
Definition: BMKOverlayGLBasicView.h:13