area property
The geographic bounding rectangle that encloses all markers in the collection.
Returns
- A RectangleGeographicArea that contains the collection's extent.
Implementation
RectangleGeographicArea get area {
final OperationResult resultString = objectMethod(
pointerId,
'MarkerCollection',
'getArea',
);
return RectangleGeographicArea.fromJson(resultString['result']);
}