geographicArea property

RectangleGeographicArea get geographicArea

The geographic bounding rectangle that encloses the route.

The geographic area is the smallest axis-aligned rectangle that encloses the entire route geometry.

Returns

Implementation

RectangleGeographicArea get geographicArea {
  final OperationResult resultString = objectMethod(
    pointerId,
    'RouteBase',
    'getGeographicArea',
  );

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