isFastBrowsingEnabled property

bool get isFastBrowsingEnabled

Get fast browsing status

Returns

  • True if fast browsing is enabled, false otherwise

Implementation

bool get isFastBrowsingEnabled {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'MapViewPreferences',
    'isFastBrowsingEnabled',
    dependencyId: _mapPointerId,
  );

  return resultString['result'];
}
set isFastBrowsingEnabled (bool enable)

Set fast browsing status

Parameters

  • IN enable True to enable, false to disable

Implementation

set isFastBrowsingEnabled(bool enable) {
  objectMethod(
    _pointerId,
    'MapViewPreferences',
    'enableFastBrowsingMode',
    args: enable,
    dependencyId: _mapPointerId,
  );
}