I have a view in which i have a map. On that view i have a tool bar. In tool bar i have a button for drop pin on map. Now i want to get methods for detecting pin drop and latitude and longitude of that point. For example when user click on button then a pin drop on center of map view. And when user click on pin then show title as the address of that point where that pin drop. What function i use for that so that i can set that event on my map view? How do that?

Thanks in advance...

link|improve this question

65% accept rate
this question from stack overflow should help you.. stackoverflow.com/questions/5471361/… – PJR Sep 5 '11 at 6:28
feedback

3 Answers

up vote 0 down vote accepted

this 2 question from stack overflow should help you..

Drop pin in center of the screen, MKMapView

How to add a push pin to a MKMapView(IOS) when touching?

link|improve this answer
feedback

Try to read this tutorial , inside have source code

http://mithin.in/2009/06/22/using-iphone-sdk-mapkit-framework-a-tutorial

link|improve this answer
feedback

If you have pin as an image then add it in a UIImageView and then add that as sub view in your map view.

Other possible option is to add image in a CALayer and add that layer as a sublayer in mapView's layer.

set frame of UIImageView or CALayer according to your pin image size.

Before doing all this please make sure that your api is not providing any built in function for adding pin in map view.

link|improve this answer
There is no need to do it tis way, you can use custom images with MKAnnotionView. using the CALayer just makes it more complicated. – rckoenes Sep 5 '11 at 7:45
Actually it is not specified in question that how the map is being displayed. Please see last line of the answer. – Learner Sep 5 '11 at 8:02
feedback

Your Answer

 
or
required, but never shown

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