I am diplaying a Custom annotation in the center of the map. Which continues need to update its label how far is it from the center of the map.

P.S. Center of the map means the centre of the visible region in the map.

So by default my annotation is in the center of the map with label 0 then when I move the map it must update itself.

Currently on each move I am removing the annotation and adding the annotation with updated text. But its not the correct way..

Kindly help.... Thanks in advance....

link|improve this question

does your coordinates for annotation change? – 7KV7 Apr 28 '11 at 7:21
no they never changes... I only want to display the current center position of the map on the screen – Avengers May 2 '11 at 6:54
feedback

2 Answers

I'd add a UIView with the label on it on the view that contains map right after adding map view. The size of this new view should be the same to size of the map. The tricky part is handling touches on it and then transferring them to the map view. You can dig into this tutorial. It is not map view but web view, nevertheless principles are the same.

If you choose that way you don't have to add this label as an annotation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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