getMaxSquareKm property
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:
- setMaxSquareKm — Set the maximum area size allowed for downloads.
Implementation
int get getMaxSquareKm {
final OperationResult resultString = objectMethod(
pointerId,
'MapDownloaderService',
'getMaxSquareKm',
);
return resultString['result'] as int;
}