BaiduMap_IOSSDK_v6.2.0_Docs  6.2.0
BMKLineDrawType.h
浏览该文件的文档.
1 //
2 // BMKLineDrawType.h
3 // MapComponent
4 //
5 // Created by zhangbaojin on 2019/8/7.
6 // Copyright © 2019 Baidu. All rights reserved.
7 //
8 
9 
10 #ifndef BMKLineDrawType_h
11 #define BMKLineDrawType_h
14 {
19 };
20 typedef enum BMKLineJoinType BMKLineJoinType;
21 
24 {
27 };
28 typedef enum BMKLineCapType BMKLineCapType;
29 
32 {
36 };
37 typedef enum BMKLineDashType BMKLineDashType;
38 
39 
40 #endif /* BMKLineDrawType_h */
BMKLineDashType
虚线绘制样式
Definition: BMKLineDrawType.h:32
@ kBMKLineDashTypeSquare
方块样式
Definition: BMKLineDrawType.h:34
@ kBMKLineDashTypeNone
实折线
Definition: BMKLineDrawType.h:33
@ kBMKLineDashTypeDot
圆点样式
Definition: BMKLineDrawType.h:35
BMKLineJoinType
line拐角处理方式(不支持虚线)
Definition: BMKLineDrawType.h:14
@ kBMKLineJoinBevel
平角衔接
Definition: BMKLineDrawType.h:15
@ kBMKLineJoinBerzier
贝塞尔平滑衔接(仅支持多纹理和多颜色的polyline绘制) 此衔接不可以与kBMKLineCapRound配合使用
Definition: BMKLineDrawType.h:18
@ kBMKLineJoinMiter
尖角衔接(尖角过长(大于线宽)按平角处理)
Definition: BMKLineDrawType.h:16
@ kBMKLineJoinRound
圆⻆衔接
Definition: BMKLineDrawType.h:17
BMKLineCapType
line头尾处理方式(不支持虚线)
Definition: BMKLineDrawType.h:24
@ kBMKLineCapRound
圆形头
Definition: BMKLineDrawType.h:26
@ kBMKLineCapButt
普通头
Definition: BMKLineDrawType.h:25