area property
Returns the geographic bounding rectangle that encloses the marker geometry.
Returns
- A RectangleGeographicArea describing the marker's enclosing bounds.
Implementation
RectangleGeographicArea get area {
final OperationResult resultString = objectMethod(
_pointerId,
'Marker',
'getArea',
);
return RectangleGeographicArea.fromJson(resultString['result']);
}