area property
RectangleGeographicArea
get
area
Get path rectangle.
The geographic bounding rectangle that contains this path.
Returns
- A RectangleGeographicArea describing the geographic area covered by the path.
If the path contains no coordinates, an empty area with RectangleGeographicArea.isDefault
set to
trueis returned.
Implementation
RectangleGeographicArea get area {
final OperationResult resultString = objectMethod(
pointerId,
'Path',
'getArea',
);
return RectangleGeographicArea.fromJson(resultString['result']);
}