estimateMissingHouseNumbers property

bool get estimateMissingHouseNumbers

Test if estimating house numbers not present in map data is allowed

Default is true

Returns

  • True if estimating house numbers not present in map data is allowed, false otherwise

Throws

  • An exception if it fails

Implementation

bool get estimateMissingHouseNumbers {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'SearchPreferences',
    'getestimatemissinghousenumbers',
  );

  return resultString['result'];
}
set estimateMissingHouseNumbers (bool value)

Enable or disable the estimation of house number results not found in map data

Default is true

Parameters

  • IN value True if estimating house numbers not present in map data is allowed, false otherwise

Throws

  • An exception if it fails

Implementation

set estimateMissingHouseNumbers(final bool value) {
  objectMethod(
    _pointerId,
    'SearchPreferences',
    'setestimatemissinghousenumbers',
    args: value,
  );
}