avoidHighways property

  1. @TagNumber.new(2)
bool get avoidHighways

When set to true, avoids highways where reasonable, giving preference to routes not containing highways. Applies only to the DRIVE and TWO_WHEELER google.maps.routing.v2.RouteTravelMode.

Implementation

@$pb.TagNumber(2)
$core.bool get avoidHighways => $_getBF(1);
  1. @TagNumber.new(2)
set avoidHighways (bool v)

Implementation

@$pb.TagNumber(2)
set avoidHighways($core.bool v) {
  $_setBool(1, v);
}