I am not able to see the Blue current location dot when I use custom annotations
- (MKAnnotationView *) mapView:(MKMapView *) mapView viewForAnnotation:(id<MKAnnotation> ) annotation { MKAnnotationView *customAnnotationView=[[[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:nil] autorelease]; UIImage *pinImage = [UIImage imageNamed:@"ann.png"]; [customAnnotationView setImage:pinImage]; customAnnotationView.canShowCallout = YES; //UIImageView *leftIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"ann.png"]]; //customAnnotationView.leftCalloutAccessoryView = leftIconView; UIButton *rightButton = [UIButton buttonWithType:UIButtonTypeDetailDisclosure]; [rightButton addTarget:self action:@selector(showDetails:) forControlEvents:UIControlEventTouchUpInside]; customAnnotationView.rightCalloutAccessoryView = rightButton; return customAnnotationView; }