Vehicle routing with capacity and time windows

Generate optimal route plan of a vehicle fleet with limited vehicle capacity and time windows.

Score: ?
Click on the map to add a new visit
Solution summary
Total driving time: unknown
Time Windows
Restaurant 06:00-10:00 · 20-40 min
Business 09:00-17:00 · 15-30 min
Residential 17:00-20:00 · 5-10 min
Vehicles
Click to highlight route
Name Cargo Drive

REST API Guide

Vehicle routing with vehicle capacity and time windows - integration via cURL

1. Download demo data

              
              curl -X GET -H 'Accept:application/json' http://localhost:8080/demo-data/FIRENZE -o sample.json
    

2. Post the sample data for solving

The POST operation returns a jobId that should be used in subsequent commands.

              
              curl -X POST -H 'Content-Type:application/json' http://localhost:8080/route-plans -d@sample.json
    

3. Get the current status and score

              
              curl -X GET -H 'Accept:application/json' http://localhost:8080/route-plans/{jobId}/status
    

4. Get the complete route plan

              
              curl -X GET -H 'Accept:application/json' http://localhost:8080/route-plans/{jobId}
    

5. Terminate solving early

              
              curl -X DELETE -H 'Accept:application/json' http://localhost:8080/route-plans/{jobId}
    

REST API Reference