MKMapView Off Screen Annotation Image Incorrect
I have a map to which I add several annotations, like so: for (Users *user in mapUsers){ double userlat = [user.llat doubleValue]; double userLong = [user.llong doubleValue]; CLLocationCoordinate2D userCoord = {.latitude = userlat, .longitude = userLong}; MapAnnotationViewController *addAnnotation = [[MapAnnotationViewController alloc] initWithCoordinate:userCoord]; NSString *userName = user.username; NSString *relationship = user.relationship; [addAnnotation setTitle:userName]; [addAnnotation setRelationshipParam:relationship]; [self.mainMapView addAnnotation:addAnnotation]; } Using this