getMaxSquareKm property

int get getMaxSquareKm

Returns the maximum area size (in square kilometers) allowed for downloads.

If a requested download area exceeds this value, startDownload will fail with an appropriate GemError.

Returns

  • (int) Maximum permitted area in square kilometers for a single download request.

See also:

Implementation

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

  return resultString['result'] as int;
}