In a Google map i want to plot 100 or more pins at a time, Now i am plotting all pins manually using for loop & it is taking more time. Is it possible to plot all pins at once
for (KZObject *flt in arrayList){
GMSMarker *marker = [[GMSMarker alloc] init];
marker.position = r1;
marker.title = [NSString stringWithFormat:@"%@",flt.cvId];
marker.appearAnimation = YES;
marker.icon = [UIImage imageNamed:@"annotationIcon_p"];
marker.map = self.mapview;
}