How can we draw the routes between two locations in MapView using the iOS 4.0? Can some one shed light on it?

link|improve this question

3  
If you expect people to invest their time answering your question, YOU should invest some time in asking the question. – Mitch Wheat Aug 6 '10 at 4:47
Thanks for the polite answer Mitch. I am sorry for not making a brief study of what I am asking? I have some other work that does not let me invest time on this. If some one has ever implemented this feature and if they explain me, I could understand it and take it further. – Krishnan Aug 6 '10 at 5:00
feedback

2 Answers

up vote 4 down vote accepted

I found that using the MKOverlayPathView and MKPolyLine and MKPolyLineView we can draw routes in Mapview.

link|improve this answer
feedback

Find a path finding algorithm that works for you. The A-star algorithm is probably a good one to recommend for this purpose.

link|improve this answer
1  
I haven't used the API, but does that mean you get waypoints as well as distances between waypoints? Because otherwise there's nothing to run A-star on -- you'd just be connecting two dots with a straight line, which is probably not a valid route on a map. – Shaggy Frog Aug 6 '10 at 5:12
Hi I found MKOverlayPathView in the documentation. Have you ever used it? – Krishnan Aug 6 '10 at 6:11
feedback

Your Answer

 
or
required, but never shown

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