ajax wrote: > thanks ! sorry to put issues out of scopus from this > Forum . Only some more... > I correct the PHP errors and the page browse the > map on the > right place however not polyline. Would be that PHP or > Javascript error ? > http://djalmabina.100webspace.net/googleMaps78/track.php
Do View:Source on that page. var polyline = new GPolyline([new GLatLng(,);],"#ff0000", 5,8);map.addOverlay(polyline); notice the (,). You need to convince your PHP to fill in the blanks. After that, you will encounter a Google Maps API problem. Polylines are created with arrays of points. A line with a single point in it isn't technically a line... --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
