Hey everyone,
I’m using GraphHopper routing API and I’m having an issue with some of my routes… Most importantly, I want to allow for my scooter to go on a ferry. Here is an example route;
It’s all good when using a bike but not when you’re trying to use a scooter… I want to let the scooter take the ferry but I can’t seem to figure out how to do it using a custom_model.
Less importantly but still useful is… I’d like for scooters to be able to use bike lanes (where allowed). I’m from the Netherlands so it is a bit complex I suppose cause not all bike lanes allow scooters but some do… Here is an example route:
Using any of the bikes it works as intended, but using a Scooter it goes around. Like I said this is less important, the ferry issue is something I want to solve.
I’d like to make it work here: https://explorer.graphhopper.com/
Using the points like this
“points”: [
[
4.903762,
52.391087
],
[
4.912135,
52.373803
]
],
And then a custom_model with some options. If that is possible it would be the best solution. If not then I hope there is another way and a suggestion you guys can give me to figure this out. I’d really appreciate it, thank you.