I'm confused with annotation's image view.
I've tried this:
how can I show an image in map pin annotation?
My map view can do what's shown in the first picture in that question.
Now I'm trying to do what's shown in the second picture.
Here is the question:
When I'm taking a photo, my map view will also create a pin with photo I've just taken.
How can get it?
I want let leftCalloutAccessoryView load image from iphone's camera library.
Here's my code for viewForAnnotation:
static NSString *identifier = @"MyLocation";
if ([annotation isKindOfClass:[MPViewPlaceMark class]]) {
MKPinAnnotationView *annotationView =
(MKPinAnnotationView *)[MapView dequeueReusableAnnotationViewWithIdentifier:identifier];
if (annotationView == nil) {
annotationView = [[MKPinAnnotationView alloc]
initWithAnnotation:annotation
reuseIdentifier:identifier];
} else {
annotationView.annotation = annotation;
}
UIImageView *leftIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"LeftIconImage.png"]];
annotationView.leftCalloutAccessoryView = leftIconView;
annotationView.enabled = YES;
annotationView.canShowCallout = YES;
return annotationView;
}