gpt4 book ai didi

java - 尝试使用 HERE Maps Android Lite API 计算路线时出现 HTTP 错误

转载 作者:行者123 更新时间:2023-11-29 22:35:54 26 4
gpt4 key购买 nike

我正在学习如何使用适用于 Android 的 Here Maps lite SDK。我几乎复制/粘贴了文档中的代码来计算路由,但我收到了一个奇怪的 HTTP 错误。下面是我的代码:

开始航点是使用 Android 的位置服务填充的,如下所示:

@Override
public void onCreate(Bundle savedInstanceState) {
// ... other initialization code handling permissions and what else
mLocationManager = (LocationManager) Objects.requireNonNull(getActivity()).getSystemService(Context.LOCATION_SERVICE);
if (mLocationManager != null) {
mLocationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 5, 5, this);
mLocationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 5, 5, this);
}
}

@Override
public void onLocationChanged(Location location) {
startWaypoint = new GeoCoordinates(location.getLatitude(), location.getLongitude());
}

使用 com.here.sdk.search.Search 选择目的地,如下所示:

try {
searchEngine = new SearchEngine();

int maxSearchResults = 30;
SearchOptions searchOptions = new SearchOptions(
LanguageCode.EN_GB,
TextFormat.PLAIN,
maxSearchResults);
searchEngine.search(startWaypoint, 'Westfield', searchOptions, (searchError, list) -> {
MyApplication.getsInstance().hideProgress();
if (searchError != null) {
return;
}
destinationWaypoint = list.get(0).coordinates;
});
} catch (InstantiationErrorException e) {
new RuntimeException("Initialization of SearchEngine failed: " + e.error.name());
}

起点和终点航路点的示例值:

startWaypoint {
Lat: -33.79073353
Lon: 150.99847916
Alt: null
}

destinationWaypoint {
Lat: -33.81746
Lon: 151.00357
Alt: null
}

这就是我尝试计算路线的方式:

List<Waypoint> waypoints = new ArrayList<>(Arrays.asList(startWaypoint, destinationWaypoint));

mRoutingEngine.calculateRoute(
waypoints,
new RoutingEngine.CarOptions(),
(routingError, routes) -> {
if (routingError == null) {
if ((routes != null) && (routes.size() > 0)) {
Route route = routes.get(0);
showRouteDetails(route);
showRouteOnMap(route);
zoomToRoute(route);
} else {
MyApplication.getsInstance().showDialog(getActivity(), false, "Error while calculating a route:", "Could not calculate a route", "OK", null, null, null);
}
} else {
MyApplication.getsInstance().showDialog(getActivity(), false, "Error while calculating a route:", routingError.toString(), "OK", null, null, null);
}
});

我收到 HTTP 错误,消息如下:2019-12-28 16:07:22.581 32067-32171/com.example.app E/routing: [ERROR] routing - 路由错误:4,异常:路由错误格式无效,错误代码:404

有没有人遇到过这种情况?

更新

如果我使用相同的参数多次调用 mRoutingEngine.calculateRoute(),最终它会成功并为我提供路线。这就是为什么这种行为让我感到困惑

最佳答案

如果您只在 map 上单击一次,您可能会遇到此错误。要获取路线,请先在 map 上单击两次以创建起点和目的地航路点,然后单击添加路线选项,它将按预期工作。 enter image description here

因为 Routing 方法将路由列表作为 RoutingExample.java 中的参数。

希望这对您有所帮助。

关于java - 尝试使用 HERE Maps Android Lite API 计算路线时出现 HTTP 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59508325/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com