Page Summary
-
GMSMarkerAnimationdefines animation types for Google Maps SDK markers. -
Three animation types are available:
none(default),pop, andfadeIn. -
noneapplies no animation,popmakes the marker pop from its ground anchor, andfadeInfades the marker in when added to the map.
GMSMarkerAnimation
enum GMSMarkerAnimation : NSUInteger {}Animation types for GMSMarker.
-
No animation (default).
Declaration
Swift
case none = 0Objective-C
kGMSMarkerAnimationNone = 0 -
The marker will pop from its groundAnchor when added.
Declaration
Swift
case pop = 1Objective-C
kGMSMarkerAnimationPop -
The marker will fade in when added.
Declaration
Swift
case fadeIn = 2Objective-C
kGMSMarkerAnimationFadeIn