accurateTrackMatch property
Enables accurate track matching for route-over-track computations.
When true, the SDK uses more precise track matching algorithms during route calculation when track-based landmarks are provided.
Default is true
Implementation
bool get accurateTrackMatch {
final OperationResult resultString = objectMethod(
pointerId,
'RoutePrefWrapper',
'getAccurateTrackMatch',
);
return resultString['result'];
}
Enables accurate track matching for route-over-track computations.
When true, the SDK uses more precise track matching algorithms during route calculation when track-based landmarks are provided.
Parameters
value: True to enable accurate track matching, false to disable.
Default is true
Implementation
set accurateTrackMatch(final bool value) {
objectMethod(
pointerId,
'RoutePrefWrapper',
'accuratetrackmatch',
args: value,
);
}