MAPinAnnotationView.h 734 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // MAPinAnnotationView.h
  3. // MAMapKitDemo
  4. //
  5. // Created by songjian on 13-1-7.
  6. // Copyright © 2016 Amap. All rights reserved.
  7. //
  8. #import "MAConfig.h"
  9. #import "MAMapView.h"
  10. #import "MAAnnotationView.h"
  11. ///MAPinAnnotationColor
  12. typedef NS_ENUM(NSInteger, MAPinAnnotationColor){
  13. MAPinAnnotationColorRed = 0, ///< 红色大头针
  14. MAPinAnnotationColorGreen, ///< 绿色大头针
  15. MAPinAnnotationColorPurple ///< 紫色大头针
  16. };
  17. ///提供类似大头针效果的annotation view
  18. @interface MAPinAnnotationView : MAAnnotationView
  19. ///大头针的颜色
  20. @property (nonatomic) MAPinAnnotationColor pinColor;
  21. ///添加到地图时是否使用下落动画效果
  22. @property (nonatomic) BOOL animatesDrop;
  23. @end