I have tried to use GDirections to load a query with 100 address and
geopoints, just to find that the max direction I can get is 20
addresses. Is there a way to use GDirections over and over to get all
100 to show.
So I would start with the last address of the first GDirections and
adding polylines in a new overlay or would that erase the first
overlay ??
I'm using Delphi and have the the following code on my website;
gdir = new GDirections(map,directionsPanel);
>From Delphi I add all addresses into a String.
MyString:= '"from: ' + HAddress[0] + '@' + LatT[0] + ',' + LongT[0];
MyString:= MyString+ ' to: ' + HAddress[i] + '@' + LatT[i] + ',' +
LongT[i];
HTMLWindow2.execScript('gdir.load(' + MyString+ ',
{getPolyline:true,getSteps:true})', 'JavaScript');
Thanks,
Kim
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---