maxScale property

double get maxScale

Gets the maximum scale factor for the object.

Implementation

double get maxScale {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'MapSceneObject',
    'getMaxScaleFactor',
  );

  return resultString['result'];
}