MAPinAnnotationView.h 679 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // MAPinAnnotationView.h
  3. // MAMapKit
  4. //
  5. // Created by AutoNavi.
  6. // Copyright (c) 2013年 AutoNavi. All rights reserved.
  7. //
  8. #import "MAAnnotationView.h"
  9. typedef NS_ENUM(NSInteger, MAPinAnnotationColor) {
  10. MAPinAnnotationColorRed = 0,
  11. MAPinAnnotationColorGreen,
  12. MAPinAnnotationColorPurple
  13. };
  14. /*!
  15. @brief 提供类似大头针效果的annotation view
  16. */
  17. @interface MAPinAnnotationView : MAAnnotationView
  18. /*!
  19. @brief 大头针的颜色,有MAPinAnnotationColorRed, MAPinAnnotationColorGreen, MAPinAnnotationColorPurple三种
  20. */
  21. @property (nonatomic) MAPinAnnotationColor pinColor;
  22. /*!
  23. @brief 动画效果
  24. */
  25. @property (nonatomic) BOOL animatesDrop;
  26. @end