getContourGeographicArea method

RectangleGeographicArea getContourGeographicArea({
  1. bool relevantOnly = true,
})

Get contour rectangle geographic area.

Parameters

  • IN relevantOnly If true, it will return the relevant contour bounding box if it exists, otherwise the full contour bounding box.

Returns

Throws

  • An exception if it fails.

Implementation

RectangleGeographicArea getContourGeographicArea({
  final bool relevantOnly = true,
}) {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'Landmark',
    'getContourGeograficArea',
    args: relevantOnly,
  );

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