Skip to content

Commit

Permalink
MapMatching: added ignore param (#1424)
Browse files Browse the repository at this point in the history
* MapMatching: added ignore param
  • Loading branch information
RingerJK authored Apr 27, 2022
1 parent d0862d9 commit b300f37
Show file tree
Hide file tree
Showing 4 changed files with 138 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ public interface MapMatchingService {
* @param waypointIndices which input coordinates should be treated as waypoints/separate legs.
* Note: coordinate indices not added here act as silent waypoints
* @param waypointNames custom names for waypoints used for the arrival instruction.
* @param ignore ignore certain routing restrictions when map matching.
* @param approaches which side of the road to approach a waypoint.
* @return the MapMatchingResponse in a Call wrapper
* @since 2.0.0
Expand All @@ -87,6 +88,7 @@ Call<MapMatchingResponse> getCall(
@Query("voice_units") String voiceUnits,
@Query("waypoints") String waypointIndices,
@Query("waypoint_names") String waypointNames,
@Query("ignore") String ignore,
@Query("approaches") String approaches);


Expand Down Expand Up @@ -134,6 +136,7 @@ Call<MapMatchingResponse> getCall(
* @param waypointIndices which input coordinates should be treated as waypoints/separate legs.
* Note: coordinate indices not added here act as silent waypoints
* @param waypointNames custom names for waypoints used for the arrival instruction.
* @param ignore ignore certain routing restrictions when map matching.
* @param approaches which side of the road to approach a waypoint.
* @return the MapMatchingResponse in a Call wrapper
* @since 4.4.0
Expand All @@ -160,5 +163,6 @@ Call<MapMatchingResponse> postCall(
@Field("voice_units") String voiceUnits,
@Field("waypoints") String waypointIndices,
@Field("waypoint_names") String waypointNames,
@Field("ignore") String ignore,
@Field("approaches") String approaches);
}
Loading

0 comments on commit b300f37

Please sign in to comment.