Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

enter image description here

Is this popover shown, on tapping the Annotation point, a built in or a view created by developer?

    MKPointAnnotation *annotationPoint = [[MKPointAnnotation alloc] init];
    annotationPoint.coordinate = annotationCoord;
    annotationPoint.subtitle = user.purchasedLocation;
    [mapView addAnnotation:annotationPoint];

I want to create a popover like the image shown above in my map view . When I added the above code to my app, it only showed the street address. Is there a built in method to display such kind of popover in MapKit framework, as shown above with user image and arrow image?

Thanks.

share|improve this question

1 Answer

up vote 1 down vote accepted

Look into this stackoverflow post Annotation with Image This will help you adding button and image in your annotation.

And this link Adding images to map Annotation

share|improve this answer
So, there is no built in api to display such kind of popover? – Ganesh Nayak May 25 '12 at 11:00
This post answers your question stackoverflow.com/questions/6550201/… – iError May 25 '12 at 11:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.