AWFAnnotationView
Objective-C
@protocol AWFAnnotationView <NSObject>Swift
protocol AWFAnnotationView : NSObjectProtocolThe AWFAnnotationView protocol represents an annotation renderer, typically an instance of UIView or MKAnnotationView, that manages animating the
annotation while displayed on a map.
- 
                  
                  The annotation object currently associated with the view. DeclarationObjective-C @property (nonatomic, strong) id<AWFAnnotation> _Nonnull annotation;
- 
                  
                  Performs the presentation animation if one has been configured with for the associated annotation style.If the annotation belongs to a timeline animation, this animation will be only be performed once instead of repeating. DeclarationObjective-C - (void)startAnimating;Swift func startAnimating()
- 
                  
                  Removes all animations from the annotation. DeclarationObjective-C - (void)stopAnimating;Swift func stopAnimating()
- 
                  
                  Performs the dismissal animation if one has been configured with for the associated annotation style.DeclarationObjective-C - (void)animateOut;Swift func animateOut()
 View on GitHub
View on GitHub AWFAnnotationView Protocol Reference
        AWFAnnotationView Protocol Reference