MAOverlay.h 481 B

1234567891011121314151617181920212223
  1. //
  2. // MAOverlay.h
  3. // MAMapKit
  4. //
  5. //
  6. // Copyright (c) 2011年 Amap. All rights reserved.
  7. //
  8. #import "MAConfig.h"
  9. #import "MAAnnotation.h"
  10. #import "MAGeometry.h"
  11. ///该类是地图覆盖物的基类,所有地图的覆盖物需要继承自此类
  12. @protocol MAOverlay <MAAnnotation>
  13. @required
  14. ///返回区域中心坐标
  15. @property (nonatomic, readonly) CLLocationCoordinate2D coordinate;
  16. ///区域外接矩形
  17. @property (nonatomic, readonly) MAMapRect boundingMapRect;
  18. @end