Using Google maps iOS SDK I have implemented a mapView in that i have created markers as follows
// 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_;
But i need to Display animated images ie some sequence of images to display, animated rings around a point, instead of original GMSMarker
sequence of images are point1.png point2.png point3.png point4.png point5.png
Can any one help me to achieve this