estimateMissingHouseNumbers property
Whether estimation of missing house numbers is enabled.
When true, the search engine will attempt to infer house numbers not present in map data. Default is true.
Returns
- True if estimation is enabled, false otherwise.
Implementation
bool get estimateMissingHouseNumbers {
final OperationResult resultString = objectMethod(
pointerId,
'SearchPreferences',
'getestimatemissinghousenumbers',
);
return resultString['result'];
}
Enable or disable estimation of missing house numbers.
Parameters
value: True to enable estimation, false to disable.
Implementation
set estimateMissingHouseNumbers(final bool value) {
objectMethod(
pointerId,
'SearchPreferences',
'setestimatemissinghousenumbers',
args: value,
);
}