area property

GeographicArea get area

Geographic area associated with the event.

If the impact zone is path the returned area is typically the boundingBox. For area impact zones the returned value is the more precise geographic area used to define the event.

Returns

Implementation

GeographicArea get area {
  final OperationResult resultString = objectMethod(
    pointerId,
    'TrafficEvent',
    'getArea',
  );

  return GeographicArea.fromJson(resultString['result']);
}