public static interface CalculateRouteSummary.Builder extends SdkPojo, CopyableBuilder<CalculateRouteSummary.Builder,CalculateRouteSummary>
| Modifier and Type | Method and Description |
|---|---|
CalculateRouteSummary.Builder |
dataSource(String dataSource)
The data provider of traffic and road network data used to calculate the route.
|
CalculateRouteSummary.Builder |
distance(Double distance)
The total distance covered by the route.
|
CalculateRouteSummary.Builder |
distanceUnit(DistanceUnit distanceUnit)
The unit of measurement for the distance.
|
CalculateRouteSummary.Builder |
distanceUnit(String distanceUnit)
The unit of measurement for the distance.
|
CalculateRouteSummary.Builder |
durationSeconds(Double durationSeconds)
The total travel time for the route measured in seconds.
|
CalculateRouteSummary.Builder |
routeBBox(Collection<Double> routeBBox)
Specifies a geographical box surrounding a route.
|
CalculateRouteSummary.Builder |
routeBBox(Double... routeBBox)
Specifies a geographical box surrounding a route.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildCalculateRouteSummary.Builder dataSource(String dataSource)
The data provider of traffic and road network data used to calculate the route. Indicates one of the available providers:
Esri
Here
For more information about data providers, see Amazon Location Service data providers.
dataSource - The data provider of traffic and road network data used to calculate the route. Indicates one of the
available providers:
Esri
Here
For more information about data providers, see Amazon Location Service data providers.
CalculateRouteSummary.Builder distance(Double distance)
The total distance covered by the route. The sum of the distance travelled between every stop on the route.
If Esri is the data source for the route calculator, the route distance can’t be greater than 400 km. If the
route exceeds 400 km, the response is a 400 RoutesValidationException error.
distance - The total distance covered by the route. The sum of the distance travelled between every stop on the
route.
If Esri is the data source for the route calculator, the route distance can’t be greater than 400 km.
If the route exceeds 400 km, the response is a 400 RoutesValidationException error.
CalculateRouteSummary.Builder distanceUnit(String distanceUnit)
The unit of measurement for the distance.
distanceUnit - The unit of measurement for the distance.DistanceUnit,
DistanceUnitCalculateRouteSummary.Builder distanceUnit(DistanceUnit distanceUnit)
The unit of measurement for the distance.
distanceUnit - The unit of measurement for the distance.DistanceUnit,
DistanceUnitCalculateRouteSummary.Builder durationSeconds(Double durationSeconds)
The total travel time for the route measured in seconds. The sum of the travel time between every stop on the route.
durationSeconds - The total travel time for the route measured in seconds. The sum of the travel time between every stop
on the route.CalculateRouteSummary.Builder routeBBox(Collection<Double> routeBBox)
Specifies a geographical box surrounding a route. Used to zoom into a route when displaying it in a map. For
example, [min x, min y, max x, max y].
The first 2 bbox parameters describe the lower southwest corner:
The first bbox position is the X coordinate or longitude of the lower southwest corner.
The second bbox position is the Y coordinate or latitude of the lower southwest corner.
The next 2 bbox parameters describe the upper northeast corner:
The third bbox position is the X coordinate, or longitude of the upper northeast corner.
The fourth bbox position is the Y coordinate, or latitude of the upper northeast corner.
routeBBox - Specifies a geographical box surrounding a route. Used to zoom into a route when displaying it in a
map. For example, [min x, min y, max x, max y].
The first 2 bbox parameters describe the lower southwest corner:
The first bbox position is the X coordinate or longitude of the lower southwest corner.
The second bbox position is the Y coordinate or latitude of the lower southwest corner.
The next 2 bbox parameters describe the upper northeast corner:
The third bbox position is the X coordinate, or longitude of the upper northeast corner.
The fourth bbox position is the Y coordinate, or latitude of the upper northeast corner.
CalculateRouteSummary.Builder routeBBox(Double... routeBBox)
Specifies a geographical box surrounding a route. Used to zoom into a route when displaying it in a map. For
example, [min x, min y, max x, max y].
The first 2 bbox parameters describe the lower southwest corner:
The first bbox position is the X coordinate or longitude of the lower southwest corner.
The second bbox position is the Y coordinate or latitude of the lower southwest corner.
The next 2 bbox parameters describe the upper northeast corner:
The third bbox position is the X coordinate, or longitude of the upper northeast corner.
The fourth bbox position is the Y coordinate, or latitude of the upper northeast corner.
routeBBox - Specifies a geographical box surrounding a route. Used to zoom into a route when displaying it in a
map. For example, [min x, min y, max x, max y].
The first 2 bbox parameters describe the lower southwest corner:
The first bbox position is the X coordinate or longitude of the lower southwest corner.
The second bbox position is the Y coordinate or latitude of the lower southwest corner.
The next 2 bbox parameters describe the upper northeast corner:
The third bbox position is the X coordinate, or longitude of the upper northeast corner.
The fourth bbox position is the Y coordinate, or latitude of the upper northeast corner.
Copyright © 2021. All rights reserved.