我正在使用Mapbox Android SDK
compile ('com.mapbox.mapboxsdk:mapbox-android-sdk:3.0.0@aar')
。
我在here之前问了类似的问题,但仍有问题。当我获得currentRoute时,我不知道如何实现。我的代码如下:
private Waypoint lastCorrectWayPoint;
private boolean checkOffRoute(Waypoint target) {
boolean isOffRoute = false;
if(currentRoute != null){
if (currentRoute.isOffRoute(target)) {
showMessage("You are off-route, recalculating...");
isOffRoute = true;
lastCorrectWayPoint = null;
//would recalculating route.
} else {
lastCorrectWayPoint = target;
String direction = "Turn right"; //The message what should I prompt to user
double distance = 0.0;//The distance which from target to next step.
int duration = 0;//The time which from target to next step.
String desc = "Turn right to xx street.";
//Implement logic to get them here.
showMessage("direction:" + direction + ", distance:" + distance + ", duration:" + duration + ", desc:" + desc);
}
}
checkOffRoute()
将在onLocationChanged()
内调用。我认为MapBox SDK应该向开发人员提供这些数据,而不是开发人员自己实现它。或者如果我错过SDK中的重要信息?有什么建议吗?
答案 0 :(得分:3)
希望你的应用程序顺利进行。我看到你试图获得下一步的方向,距离和持续时间。我会尽力尽力回答这个问题,同时保持简短。
<强>方向强>
首先,当您请求路线时,您需要包含几行:
MapboxDirections client = new MapboxDirections.Builder()
.setAccessToken(getString(R.string.accessToken))
.setOrigin(origin)
.setDestination(destination)
.setProfile(DirectionsCriteria.PROFILE_DRIVING)
.setAlternatives(true) // Gives you more then one route if alternative routes available
.setSteps(true) // Gives you the steps for each direction
.setInstructions(true) // Gives human readable instructions
.build();
收到回复后,您可以按照
的方式执行操作response.body().getRoutes().get(0).getSteps().get(0).getDirection()
它将为您提供机动后的近似基本行进方向。通常是以下之一:'N','NE','E','SE','S','SW','W'或'NW'。此特定行为您提供列表中的第一条路线(通常也是最短和最佳选择路线)和第一步。要更改这些步骤,只需将第二个.get(int)
的整数值更改为您需要的任何步骤。
持续时间和距离
与上述相同,但您使用的是.getDirection()
:
response.body().getRoutes().get(0).getSteps().get(0).getDuration()
和
response.body().getRoutes().get(0).getSteps().get(0).getDistance()
分别。我希望这至少有助于在创建应用程序时指导您正确的方向。