TrafficIncidentObserver
public protocol TrafficIncidentObserver : Observer
Protocol that defines method that will be performed when user clicked on traffic incidents icon.
The method for getting information about taps on a traffic incident.
The observer method is triggered with the list of TrafficIncident
objects and the CLLocationCoordinate2D
of the clicked location.
Each TrafficIncident
provides information about the incident such as a description, delay in seconds,
and when the incident is estimated to end.
Declaration
Swift
func onTrafficIncidentClicked(trafficIncidents: [TrafficIncident], coordinate: CLLocationCoordinate2D)