getPartArea method

RectangleGeographicArea getPartArea(
  1. int part
)

Get marker part enclosing area.

Parameters

  • IN part The marker part index to which the function applies.

Returns

Throws

  • An exception if it fails.

Implementation

RectangleGeographicArea getPartArea(final int part) {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'Marker',
    'getPartArea',
    args: part,
  );

  return RectangleGeographicArea.fromJson(resultString['result']);
}