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.

I have a list contains sequence of latitude and longitude, like (example)

  • [28.608329,77.198782]
  • [27.608329,78.198782]
  • [29.608329,79.198782]
  • [30.608329,87.198782]
  • [31.608329,97.198782]

I already got a code, that draws using 2 lant/long combinations.

I have to draw line/route (like in Google Maps/Navigation) using all this sequence of sequence of latitude and longitude. Is there any way available to do this ?

share|improve this question
Show us what code you have. – mydogisbox Sep 21 '12 at 15:29

2 Answers

You have X points

  • Solution 1 : Draw (X-1) routes
  • Solution 2 : Draw A Polyline with X points (example with MapPolyline (Bing Maps for metro style apps))
share|improve this answer

Use the Shape Drawing Toolbox for the Bing Maps control: http://bingmapsv7modules.codeplex.com/wikipage?title=Shape%20Toolbox%20Module

share|improve this answer

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.