[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-11-15 UTC."],[[["\u003cp\u003e\u003ccode\u003eGMSMarkerAnimation\u003c/code\u003e defines animation types for Google Maps markers.\u003c/p\u003e\n"],["\u003cp\u003eIt offers three animation options: \u003ccode\u003enone\u003c/code\u003e (default), \u003ccode\u003epop\u003c/code\u003e, and \u003ccode\u003efadeIn\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003epop\u003c/code\u003e makes the marker pop from its ground anchor, while \u003ccode\u003efadeIn\u003c/code\u003e gradually reveals it.\u003c/p\u003e\n"],["\u003cp\u003eThese animations apply when the marker is added to the map.\u003c/p\u003e\n"]]],[],null,["# GoogleNavigation Framework Reference\n\nGMSMarkerAnimation\n==================\n\n enum GMSMarkerAnimation : NSUInteger {}\n\nAnimation types for GMSMarker.\n- `\n ``\n ``\n `\n\n ### [kGMSMarkerAnimationNone](#/c:@E@GMSMarkerAnimation@kGMSMarkerAnimationNone)\n\n `\n ` \n No animation (default). \n\n #### Declaration\n\n Swift \n\n case none = 0\n\n Objective-C \n\n kGMSMarkerAnimationNone = 0\n\n- `\n ``\n ``\n `\n\n ### [kGMSMarkerAnimationPop](#/c:@E@GMSMarkerAnimation@kGMSMarkerAnimationPop)\n\n `\n ` \n The marker will pop from its groundAnchor when added. \n\n #### Declaration\n\n Swift \n\n case pop = 1\n\n Objective-C \n\n kGMSMarkerAnimationPop\n\n- `\n ``\n ``\n `\n\n ### [kGMSMarkerAnimationFadeIn](#/c:@E@GMSMarkerAnimation@kGMSMarkerAnimationFadeIn)\n\n `\n ` \n The marker will fade in when added. \n\n #### Declaration\n\n Swift \n\n case fadeIn = 2\n\n Objective-C \n\n kGMSMarkerAnimationFadeIn"]]