On Jul 1, 4:09 pm, inam <[email protected]> wrote: > > I don't know such function through which you can get all polylines on > map. Do you have any idea? please share!!!
You have to do that yourself. In general terms (since you haven't given a link)... var polylines = []; // global array map.addOverlay(polyline); polylines[] = polyline; // This saves a reference in the array Having got an array containing your polylines, you can loop through them one by one. 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 -~----------~----~----~----~------~----~------~--~---
