BMKArclineView.h 547 B

123456789101112131415161718192021222324252627
  1. /*
  2. * BMKArclineView.h
  3. * BMapKit
  4. *
  5. * Copyright 2011 Baidu Inc. All rights reserved.
  6. *
  7. */
  8. #import <UIKit/UIKit.h>
  9. #import "BMKArcline.h"
  10. #import "BMKOverlayGLBasicView.h"
  11. /// 此类用于定义一个圆弧View
  12. @interface BMKArclineView : BMKOverlayGLBasicView
  13. /**
  14. *根据指定的弧线生成一个圆弧View
  15. *@param arcline 指定的弧线数据对象
  16. *@return 新生成的弧线View
  17. */
  18. - (id)initWithArcline:(BMKArcline *)arcline;
  19. /// 该View对应的圆弧数据对象
  20. @property (nonatomic, readonly) BMKArcline *arcline;
  21. @end