I kindly need help with plotting optimal routes from my optimization model on say google map using the 'geopy' and google map v3 api. The image below illustrates an example of the optimal routes obtained from my model with the corresponding zip codes of cities.
- plot each of the routes for each of the salesmen on say a google map showing the routes using the corresponding zip codes. For example, salesman1 travels from city1(zip code 13901) -> city3(zip code 13903) -> city4(zip code 13905) and then ending back at city1(zip code 13902). Similar for salesman2 and salesman3
- the plot from point 1 must follow the road that leads to the shortest path between the points, lastly
- I would like to show the direction of the optimal path if at all possible.
I know how to plot zip code information using the google maps using the 'My Maps', but this does not address what I am trying to accomplish here as described above. Thanks in advance for your help.