Comment appliquer des animations à GMSMarker

Je suis en train de changer mon application en migrant des maps iOS vers google maps en utilisant Google Maps SDK pour iOS V1.1.0 et j'essaye d'animer les marqueurs en ajoutant / supprimant mais je n'ai trouvé aucune suggestion dans la documentation relative à ceci, S'il vous plaît me suggérer comment effectuer les animations sur GMSMarkers

Dans la reference de class GMSMarker , il est indiqué pour la propriété appearAnimation :

Contrôle l'animation utilisée lorsque ce marqueur est placé sur un GMSMapView (par défaut kGMSMarkerAnimationNone , pas d'animation).

En utilisant le SDK Google Maps pour iOS , un marqueur peut être créé comme ceci:

 GMSMarker *startMarker = [GMSMarker markerWithPosition:@"NYC"]; startMarker.appearAnimation = kGMSMarkerAnimationPop; startMarker.title = @"Start"; startMarker.snippet = @"My address"; startMarker.map = mapView;