public interface OnTrafficIncidentsClickListener
Modifier and Type | Method and Description |
---|---|
boolean |
onTrafficIncidentsClusterClick(MapPoint mapPoint,
TrafficIncidentCluster incidentsCluster)
Callback executed when traffic incidents clouster clicked
|
boolean |
onTrafficIncidentsFlowClick(MapPoint mapPoint,
java.util.List<TrafficIncidentFlow> incidentsFlows)
A Callback executed when traffic incidents flow is clicked.
|
boolean |
onTrafficIncidentsPoiClick(MapPoint mapPoint,
java.util.List<TrafficIncidentPoi> incidentsPois)
A callback executed when a traffic incidents poi (Points of Interest) is clicked.
|
boolean onTrafficIncidentsFlowClick(MapPoint mapPoint, java.util.List<TrafficIncidentFlow> incidentsFlows)
mapPoint
- A point on the map clicked by the user.incidentsFlows
- The flow incidents.boolean onTrafficIncidentsPoiClick(MapPoint mapPoint, java.util.List<TrafficIncidentPoi> incidentsPois)
mapPoint
- A point on the map clicked by the user.incidentsPois
- Poi incidents.boolean onTrafficIncidentsClusterClick(MapPoint mapPoint, TrafficIncidentCluster incidentsCluster)
mapPoint
- A point on the map clicked by the user.incidentsCluster
- An incident cluster.