ignoreRestrictionsOverTrack property

bool get ignoreRestrictionsOverTrack

Ignores map restrictions during route-over-track calculations.

When true, map-based routing restrictions (turn restrictions, access restrictions) are ignored when using track-based routing with path landmarks.

Default is false.

Implementation

bool get ignoreRestrictionsOverTrack {
  final OperationResult resultString = objectMethod(
    pointerId,
    'RoutePrefWrapper',
    'getIgnoreRestrictionsOverTrack',
  );
  return resultString['result'];
}
set ignoreRestrictionsOverTrack (bool value)

Ignores map restrictions during route-over-track calculations.

When true, map-based routing restrictions (turn restrictions, access restrictions) are ignored when using track-based routing with path landmarks.

Parameters

  • value: True to ignore restrictions, false to apply them.

Default is false.

Implementation

set ignoreRestrictionsOverTrack(final bool value) {
  objectMethod(
    pointerId,
    'RoutePrefWrapper',
    'ignorerestrictionsovertrack',
    args: value,
  );
}