navigationRouteLowRateUpdate property

bool get navigationRouteLowRateUpdate

Gets navigation route low rate update flag

Returns

  • True if navigation route low rate update is enabled, false otherwise

Throws

  • An exception if it fails

Implementation

bool get navigationRouteLowRateUpdate {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'MapViewExtensions',
    'getNavigationRouteLowRateUpdate',
  );

  return resultString['result'];
}
set navigationRouteLowRateUpdate (bool bEnable)

Sets navigation route low rate update flag

Parameters

  • IN bEnable True to enable navigation route low rate update, false to disable

Throws

  • An exception if it fails

Implementation

set navigationRouteLowRateUpdate(final bool bEnable) {
  objectMethod(
    _pointerId,
    'MapViewExtensions',
    'setNavigationRouteLowRateUpdate',
    args: bEnable,
  );
}