Hello Team,
I want to extract a direction of driving between address points using the API from gogglemaps.
I believe the best way to do this is a loop in python. Attached my template file.Thanks in Advance,Danilo
Hello Team,
I want to extract a direction of driving between address points using the API from gogglemaps.
I believe the best way to do this is a loop in python. Attached my template file.Thanks in Advance,Danilo
Instead of making directions requests from A to B, then B to C, then C to D, etc., consider using the Waypoints feature in the Google Maps Directions API: https://developers.google.com/maps/documentation/directions/intro#Waypoints. That API allows up to 23 waypoints in a single Directions request.
Instead of making directions requests from A to B, then B to C, then C to D, etc., consider using the Waypoints feature in the Google Maps Directions API: https://developers.google.com/maps/documentation/directions/intro#Waypoints. That API allows up to 23 waypoints in a single Directions request.
So the URL needs to put the end address first, and after the Waypoints. In my case the problem is when i read a xls file with address and needs to generate the route ( 20 points ) i doent know the end address.
Thanks Danilo
So the URL needs to put the end address first, and after the Waypoints. In my case the problem is when i read a xls file with address and needs to generate the route ( 20 points ) i doent know the end address.
Thanks Danilo
So the URL needs to put the end address first, and after the Waypoints. In my case the problem is when i read a xls file with address and needs to generate the route ( 20 points ) i doent know the end address.
Thanks Danilo
?origin=Surrey,BC&waypoints;=Coquitlam,BC|Burnaby,BC&destination;=Vancouver,BC
.
?origin=Surrey,BC&waypoints;=Coquitlam,BC|Burnaby,BC&destination;=Vancouver,BC
.I updated my template file and it brings in JSON attribute the point next to point A ( start ) = Valor{2}.
Now in Loop i need to get this point B and search the next address ( others two attributes from xls file Rua Cedral,366,Jardim Satelite, Sao Jose dos Campos and Avenida Doutor Joao Batista Souza Soares,300, Jardim America,Sao Jose dos Campos )
Thanks in Advance,
workspace-api-google-maps.fmwt