立得地图iOS SDK 地图&搜索服务参考手册 V1.7.0
LMKOverlayPathView.h
浏览该文件的文档.
1 //
2 // LMKOverlayPathView.h
3 // LeadorMapSDK
4 //
5 // Copyright © 2016年 IShowChina. All rights reserved.
6 //
7 
8 #import <UIKit/UIKit.h>
9 #import "LMKOverlayView.h"
10 
15 
19 @property (retain) UIColor *fillColor;
20 
24 @property (retain) UIColor *strokeColor;
25 
29 @property CGFloat lineWidth;
30 
35 
40 
44 @property CGFloat miterLimit;
45 
49 @property BOOL lineDash;
50 
51 @end
LMKLineJoinType lineJoinType
LineJoin,默认是kLMKLineJoinBevel.
Definition: LMKOverlayPathView.h:34
LMKLineCapType lineCapType
LineCap,默认是kLMKLineCapButt.
Definition: LMKOverlayPathView.h:39
BOOL lineDash
是否绘制成虚线, 默认是NO
Definition: LMKOverlayPathView.h:49
LMKLineJoinType
Definition: LMKLineDrawType.h:11
CGFloat miterLimit
MiterLimit,默认是10.f.
Definition: LMKOverlayPathView.h:44
LMKLineCapType
Definition: LMKLineDrawType.h:18
该类是地图覆盖物View的基类, 提供绘制overlay的接口但并无实际的实现
Definition: LMKOverlayView.h:19
CGFloat lineWidth
笔触宽度,默认是0
Definition: LMKOverlayPathView.h:29
UIColor * fillColor
填充颜色,默认是kLMKOverlayViewDefaultFillColor
Definition: LMKOverlayPathView.h:19
UIColor * strokeColor
笔触颜色,默认是kLMKOverlayViewDefaultStrokeColor
Definition: LMKOverlayPathView.h:24
该类提供使用CGPathRef来绘制overlay,默认的操作是将fill attributes, stroke attributes设置到CAShapeLayer...
Definition: LMKOverlayPathView.h:14