MALineDrawType.h 666 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // MALineDrawType.h
  3. // MapKit_static
  4. //
  5. // Created by yi chen on 14-7-30.
  6. // Copyright © 2016 Amap. All rights reserved.
  7. //
  8. #import "MAConfig.h"
  9. #ifndef MapKit_static_MALineDrawType_h
  10. #define MapKit_static_MALineDrawType_h
  11. enum MALineJoinType
  12. {
  13. kMALineJoinBevel, ///< 斜面连接点
  14. kMALineJoinMiter, ///< 斜接连接点
  15. kMALineJoinRound ///< 圆角连接点
  16. };
  17. typedef enum MALineJoinType MALineJoinType;
  18. enum MALineCapType
  19. {
  20. kMALineCapButt, ///< 普通头
  21. kMALineCapSquare, ///< 扩展头
  22. kMALineCapArrow, ///< 箭头
  23. kMALineCapRound ///< 圆形头
  24. };
  25. typedef enum MALineCapType MALineCapType;
  26. #endif