searchMapPOIs property
Check if search through addresses is enabled.
Default is true
Returns
- True if search through map POIs is enabled, false otherwise
Throws
- An exception if it fails
Implementation
bool get searchMapPOIs {
final OperationResult resultString = objectMethod(
_pointerId,
'SearchPreferences',
'getsearchmappois',
);
return resultString['result'];
}
Enable or disable search through map POIs.
Default is true
Parameters
- IN value True if search through map POIs is enabled, false otherwise
Throws
- An exception if it fails
Implementation
set searchMapPOIs(final bool value) {
objectMethod(
_pointerId,
'SearchPreferences',
'setsearchmappois',
args: value,
);
}