geographicArea property
RectangleGeographicArea
get
geographicArea
Geographic bounding rectangle that encloses this segment.
The geographic area is the smallest axis-aligned rectangle that encloses the segment geometry.
Returns
- RectangleGeographicArea: bounding rectangle for the segment.
Implementation
RectangleGeographicArea get geographicArea {
final OperationResult resultString = objectMethod(
pointerId,
'RouteSegmentBase',
'getGeographicArea',
);
return RectangleGeographicArea.fromJson(resultString['result']);
}