searchMapPOIs property
Whether searching map POIs is enabled.
Default is true.
Returns
- True if POI searches are enabled, false otherwise.
Implementation
bool get searchMapPOIs {
final OperationResult resultString = objectMethod(
pointerId,
'SearchPreferences',
'getsearchmappois',
);
return resultString['result'];
}
Enable or disable searching through map POIs.
Parameters
value: True to include POIs in search results, false to exclude them.
Implementation
set searchMapPOIs(final bool value) {
objectMethod(
pointerId,
'SearchPreferences',
'setsearchmappois',
args: value,
);
}