getIntermediateWaypointDropParameters static method
Get intermediate waypoint drop recommended parameters.
Returns
-
Parameters list
- OUT waypoint_drop_radius Large integer - radius in which the waypoint may be considered for a dropping attempt, in meters.
- OUT waypoint_drop_distance_threshold Double - factor by which the last dropping attempt distance to waypoint should be multiplied in order to set the next dropping attempt distance, i.e. next_drop_attempt_distance = next_drop_attempt_distance * "waypoint_drop_distance_threshold"
- OUT waypoint_drop_min_distance_m Large integer - minimum distance at which a waypoint may be target to a drop attempt
Throws
- An exception if it fails.
Implementation
static ParameterList getIntermediateWaypointDropParameters() {
final OperationResult result = staticMethod(
'NavigationService',
'getIntermediateWaypointDropParameters',
);
return ParameterList.init(result['result']);
}