Comment définir des marqueurs d'Annotation ( animation d'anneaux autour d'un point) sur GMSMapView

À l'aide de Google maps iOS SDK, j'ai mis en place une mapView
j'ai créé des marqueurs comme suit

//Creates a marker in the center of the map.
GMSMarker *marker = [[GMSMarker alloc] init];
marker.position = CLLocationCoordinate2DMake(-33.86, 151.20);
marker.title = @"Sydney";
marker.snippet = @"Australia";

marker.icon = [UIImage imageNamed:@"point1.png"]; 

marker.map = mapView_;

Mais j'ai besoin d'Afficher images animées ie certaines séquences d'images à afficher, animé d'anneaux autour d'un point, au lieu de l'original GMSMarker

séquence d'images sont point1.png point2.png point3.png point4.png point5.png

Quelqu'un peut-il m'aider à atteindre cet

OriginalL'auteur user2732294 | 2013-08-30