setFields method

void setFields({
  1. required double x,
  2. required double y,
})

Update the LAM x/y coordinates for this projection.

Parameters

  • x: (double) New x coordinate.
  • y: (double) New y coordinate.

Implementation

void setFields({required double x, required double y}) {
  objectMethod(
    _pointerId,
    'Projection_LAM',
    'set',
    args: <String, dynamic>{'x': x, 'y': y},
  );
}