searchMapPOIs property

bool get searchMapPOIs

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'];
}
set searchMapPOIs (bool value)

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,
  );
}