BMKPinAnnotationView.h 691 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * BMKPinAnnotationView.h
  3. * BMapKit
  4. *
  5. * Copyright 2011 Baidu Inc. All rights reserved.
  6. *
  7. */
  8. #import "BMKAnnotationView.h"
  9. enum {
  10. BMKPinAnnotationColorRed = 0,
  11. BMKPinAnnotationColorGreen,
  12. BMKPinAnnotationColorPurple
  13. };
  14. typedef NSUInteger BMKPinAnnotationColor;
  15. ///提供类似大头针效果的annotation view
  16. @interface BMKPinAnnotationView : BMKAnnotationView
  17. {
  18. @private
  19. BMKPinAnnotationColor _pinColor;
  20. BOOL _animatesDrop;
  21. }
  22. ///大头针的颜色,有BMKPinAnnotationColorRed, BMKPinAnnotationColorGreen, BMKPinAnnotationColorPurple三种
  23. @property (nonatomic) BMKPinAnnotationColor pinColor;
  24. ///动画效果
  25. @property (nonatomic) BOOL animatesDrop;
  26. @end