00001
00002
00003
00004
00005
00006
00007
00008 #import "BMMarkerView.h"
00009
00011 typedef enum BMPushpinColor{
00012 BMPushpinColorOrange = 0,
00013 BMPushpinColorGreen,
00014 BMPushpinColorRed,
00015 BMPushpinColorBlue,
00016 BMPushpinColorYellow,
00017 BMPushpinColorPurple,
00018 } BMPushpinColor;
00019
00020 @class BMPushpinViewInternal;
00021
00022 @interface BMPushpinView : BMMarkerView
00023 {
00024 @private
00025 BMPushpinViewInternal *_pinInternal;
00026 }
00027
00028 @property (nonatomic) BMPushpinColor pinColor;
00029 @property (nonatomic) BOOL animatesDrop;
00030
00031 @end