作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在学习如何使用适用于 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 上单击两次以创建起点和目的地航路点,然后单击添加路线选项,它将按预期工作。
因为 Routing 方法将路由列表作为 RoutingExample.java 中的参数。
希望这对您有所帮助。
关于java - 尝试使用 HERE Maps Android Lite API 计算路线时出现 HTTP 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59508325/
我是一名优秀的程序员,十分优秀!