boundingBox property
Gets the bounding box of the traffic event.
Returns
- The bounding box
Implementation
RectangleGeographicArea get boundingBox {
final OperationResult resultString = objectMethod(
_pointerId,
'TrafficEvent',
'getBoundingBox',
);
return RectangleGeographicArea.fromJson(resultString['result']);
}