MKAnnotationView *annotationView = [self.myMapView dequeueReusableAnnotationViewWithIdentifier:@"AnnotationID"];
if (annotationView == nil)
{
annotationView = [[[MKPinAnnotationView alloc] initWithAnnotation:annot reuseIdentifier:@"AnnotationID"] autorelease];
annotationView.image = [UIImage imageNamed:@"customPin.png"];
annotationView.canShowCallout = YES;
}
return annotationView;