On Mar 31, 8:41 am, sureshT suri <[email protected]> wrote: > Hi, > > These question are not different from the previous question but i didn't > receive any proper answer for the previous questions.So i wrote in details > what actually i want it.
If "Showing the arrows on the normal geo points is not so difficult we can do it," then all you need to do is extract the coordinates of the vertices from the encoded polyline in order to use them. polyline.getVertex(n) will return a GLatLng object corresponding to vertex n. The issue you may find with an encoded polyline is that vertex n may or may not be used at a particular zoom level. If that's important then you will need to decode the polyline yourself and work out which points are available at that particular zoom. Mark McClure's work may help there. http://facstaff.unca.edu/mcmcclur/GoogleMaps/EncodePolyline/ Andrew --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/Google-Maps-API?hl=en -~----------~----~----~----~------~----~------~--~---
