Graphhopper-core doc

Excuse me, I want to do a simple route calculation with springboot. I imported grapphopper-core pom, but I didn’t find the relevant documentation

com.graphhopper graphhopper-core 10.2

thx
regards qingshan

This is not the intended usecase of Graphhopper API.

You might check with graphhopper-web-bundle more specifically with
./web-bundle/src/main/java/com/graphhopper/resources/RouteResource.java how to achieve a routing request.

graphhopper-core 10.2 can not use. right?

I just want to implement offline route planning and don’t want to use http requests

You can take a look at RoutingExample.java to see how to calculate routes without the web API. It only requires graphhopper-core.

OK, thank you very much