slippyZoomLevel property

double get slippyZoomLevel

Retrieves the current slippy tile zoom level of the map view.

Returns the active zoom level in the slippy tile system, which follows the standard web map tile convention.

See also:

Implementation

double get slippyZoomLevel {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'MapView',
    'getSlippyZoomLevel',
  );

  return resultString['result'];
}