scale property
Get the map view current scale ( meters for 1 mm )
Returns
The map view current scale ( meters for 1 mm )
Throws
- An exception if it fails.
Implementation
double get scale {
final OperationResult resultString = objectMethod(
_pointerId,
'MapView',
'getScale',
);
return resultString['result'];
}