Interface RoutePointListener


public interface RoutePointListener
Adding new route point result listener
Since:
1.0
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Adding route point failed (no road nearby)
    void
    onRoutePointAdded​(int pointId, boolean isInRestrictedArea)
    Route point was successfully added
  • Method Details

    • onRoutePointAdded

      void onRoutePointAdded(@IntRange(from=1L) int pointId, boolean isInRestrictedArea)
      Route point was successfully added
      Parameters:
      pointId - id of the newly added route point
      isInRestrictedArea - true/false whether the route point was added to a road with restricted access
      Since:
      1.0
    • onAddingRoutePointFailed

      void onAddingRoutePointFailed()
      Adding route point failed (no road nearby)
      Since:
      1.0