Local interface call returned error, calling demo interface can successfully retrieve data

Call: https://graphhopper.com/api/1/route?key=b16b1d60 -3c8c-4cd6-bae6-07493f23e589
Request parameters: {“points”:[[115.89619710156252,40.298265574704175],[116.45787312695313,40.240634434578624]],“profile”:“car”,“elevation”:true,“instructions”:true,“locale”:“zh_CN”,“points_encoded”:false,“points_encoded_multiplier”:1000000,“details”:[“road_class”,“road_environment”,“max_speed”,“average_speed”],“snap_preventions”:[“ferry”],“alternative_route.max_paths”:3,“algorithm”:“alternative_route”}
Successfully returned data.
After local deployment
Call: http://localhost:28989/route?key=
Using the same request parameters as above,
Failure message:
{
“message”: “Cannot find point 0: 40.298265574704175,115.89619710156252”,
“hints”: [
{
“message”: “Cannot find point 0: 40.298265574704175,115.89619710156252”,
“details”: “com.graphhopper.util.exceptions.PointNotFoundException”,
“point_index”: 0
}
]
}
May I ask what the problem is!

Did you import a map that includes your requested coordinate? Did you take a look at http://localhost:28989/maps/? You could try moving around the route markers a bit to get an idea which points can or can not be found.