getMaxSquareKm property

int get getMaxSquareKm

Gets the maximum area size in square kilometers that can be downloaded. If the area size is greater than this value, startDownload will fail.

Returns

The maximum area size in square kilometers that can be downloaded.

Implementation

int get getMaxSquareKm {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'MapDownloaderService',
    'getMaxSquareKm',
  );

  return resultString['result'] as int;
}