, . , , . , .
Direction
, , :
MapboxDirections client = new MapboxDirections.Builder()
.setAccessToken(getString(R.string.accessToken))
.setOrigin(origin)
.setDestination(destination)
.setProfile(DirectionsCriteria.PROFILE_DRIVING)
.setAlternatives(true)
.setSteps(true)
.setInstructions(true)
.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()
. , .