Displays the interested location on map view which are multiple locations.
MKPointAnnotation *annotation = [[MKPointAnnotation alloc] init];
annotation.coordinate = CLLocationCoordinate2DMake([[[[InterestedLocationsAry objectAtIndex:i] objectForKey:@"Location"] objectForKey:@"latitude"] floatValue], [[[[InterestedLocationsAry objectAtIndex:i] objectForKey:@"Location"] objectForKey:@"longitude"] floatValue]);
annotation.title = [[[InterestedLocationsAry objectAtIndex:i] objectForKey:@"Location"] objectForKey:@"name"];
[mapView selectAnnotation:annotation animated:YES];
[mapView addAnnotation:annotation];
Its show pinpoint on mapview. On select pinpoints, it does not shows popupbox for MKPointAnnotation.