tilesMaxSpace property
int
get
tilesMaxSpace
Returns the maximum tile cache/storage size in kilobytes.
Returns
- int: configured maximum size in KB.
Implementation
static int get tilesMaxSpace {
final OperationResult resultString = staticMethod(
'SdkSettings',
'getTilesMaxSpace',
);
return resultString['result'];
}
set
tilesMaxSpace
(int maxSpace)
Sets the maximum cache/storage size for downloaded tiles (in kilobytes).
Parameters
maxSpace: size in KB. A value of0means no space restriction.
Implementation
static set tilesMaxSpace(int maxSpace) {
staticMethod('SdkSettings', 'setTilesMaxSpace', args: maxSpace);
}