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