Skip to content

Commit

Permalink
fix(core-utils): remove old walkSpeed query-param to reduce interfere…
Browse files Browse the repository at this point in the history
…nce with new mode selector
  • Loading branch information
daniel-heppner-ibigroup committed Aug 16, 2023
1 parent 2d55c1b commit 2438812
Showing 1 changed file with 0 additions and 25 deletions.
25 changes: 0 additions & 25 deletions packages/core-utils/src/query-params.js
Original file line number Diff line number Diff line change
Expand Up @@ -365,31 +365,6 @@ const queryParams = [
}
]
},

{
/* walkSpeed -- the user's walking speed in m/s */
name: "walkSpeed",
routingTypes: ["ITINERARY", "PROFILE"],
default: 1.34,
selector: "DROPDOWN",
label: "Walk Speed",
applicable: query => query.mode && query.mode.indexOf("WALK") !== -1,
options: [
{
text: "2 MPH",
value: 0.89
},
{
text: "3 MPH",
value: 1.34
},
{
text: "4 MPH",
value: 1.79
}
]
},

{
name: "walkReluctance",
routingTypes: ["ITINERARY", "PROFILE"],
Expand Down

0 comments on commit 2438812

Please sign in to comment.