On Oct 1, 9:54 am, coolkille <[email protected]> wrote: > Nice . > > Thanks Rossko for the help with the 'bow'. > > Now I only have to figer out how to implement marker in eatch end off > the bow.
Once you have sorted out the last comma in the array, something like this should work: var marker1 = new GMarker(pts[0]) // pts[0] is the first GLatLng var marker2 = new GMarker(pts[pts.length-1]) // last GLatLng That won't work correctly while IE thinks the last element in the array is null. 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 -~----------~----~----~----~------~----~------~--~---
