mapScalePosition property

RectType<int> get mapScalePosition

Get the map scale position.

Returns

  • The map position

Implementation

RectType<int> get mapScalePosition {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'MapViewPreferences',
    'getMapScalePosition',
    dependencyId: _mapPointerId,
  );

  return RectType<int>.fromJson(resultString['result']);
}
set mapScalePosition (RectType<int> value)

Sets the map position.

Parameters

  • IN value The map position

Implementation

set mapScalePosition(final RectType<int> value) {
  objectMethod(
    _pointerId,
    'MapViewPreferences',
    'setMapScalePosition',
    args: value,
    dependencyId: _mapPointerId,
  );
}