is ist possible to do a graphhopper request with 10 points and make a pause of 30 sek on every reached point. So that the pathe details for time have point 0 at time 0:00 point 1 at 2:00 and than pont 1 with 2:30 and than starts routing to point 3 and so on?
This is intresting for RoundTrips for package deliverys or trucker
Do you mean solving an unknown route?
Just add 30 seconds service time.
If you know the route and are outputting the time, just add 30 seconds to each time.
Either iterate over path results or assess each point to point relation independently
point 0 > 1 takes 2:00. New time1 = 120 + 30
point 1 > 2 takes 3:00. New time2 = 180 + 30
Total time = New time1 + New time2