BMKGroundOverlayView.h 604 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * BMKGroundOverlayView.h
  3. * BMapKit
  4. *
  5. * Copyright 2013 Baidu Inc. All rights reserved.
  6. *
  7. */
  8. #import <UIKit/UIKit.h>
  9. #import "BMKGroundOverlay.h"
  10. #import "BMKOverlayPathView.h"
  11. /// 该类用于定义一个BMKGroundOverlayView
  12. @interface BMKGroundOverlayView : BMKOverlayView
  13. /**
  14. *根据指定的groundOverlay生成一个View
  15. *@param groundOverlay 指定的groundOverlay数据对象
  16. *@return 新生成的View
  17. */
  18. - (id)initWithGroundOverlay:(BMKGroundOverlay *)groundOverlay;
  19. /// 该View对应的ground数据对象
  20. @property (nonatomic, readonly) BMKGroundOverlay *groundOverlay;
  21. @end