MAPinAnnotationView.h 731 B

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