setFields method

void setFields({
  1. required double x,
  2. required double y,
  3. required int zone,
  4. required Hemisphere hemisphere,
})

Sets the horizontal axis, vertical axis, zone and hemisphere of the point.

Parameters

  • IN x The x coordinate of the point.
  • IN y The y coordinate of the point.
  • IN zone The zone of the point.
  • IN hemisphere The Hemisphere of the point.

Implementation

void setFields({
  required double x,
  required double y,
  required int zone,
  required Hemisphere hemisphere,
}) {
  objectMethod(
    _pointerId,
    'Projection_UTM',
    'set',
    args: <String, dynamic>{
      'x': x,
      'y': y,
      'zone': zone,
      'hemisphere': hemisphere.index,
    },
  );
}