You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'A penalty applied when entering an road which is only allowed to enter if necessary to reach the destination.',
202
+
unit: 'sec',
203
+
settings: {
204
+
min: 0,
205
+
max: 600,
206
+
step: 30,
207
+
},
208
+
};
209
+
210
+
constelevatorPenalty={
211
+
name: 'Elevator Penalty',
212
+
param: 'elevator_penalty',
213
+
description:
214
+
'A penalty in seconds added to each transition via an elevator node or onto an elevator edge. Higher values apply larger cost penalties to avoid elevators.',
215
+
unit: 'sec',
216
+
settings: {
217
+
min: 0,
218
+
max: 600,
219
+
step: 30,
220
+
},
221
+
};
222
+
197
223
consttollBoothCost={
198
224
name: 'Toll Booth Cost',
199
225
param: 'toll_booth_cost',
@@ -551,6 +577,29 @@ const bicycleType = {
551
577
],
552
578
};
553
579
580
+
constpedestrianType={
581
+
name: 'Pedestrian Type',
582
+
description: `One of "foot", "wheelchair", "blind". If set to blind, enables additional route instructions, especially useful for blind users: Announcing crossed streets, the stairs, bridges, tunnels, gates and bollards, which need to be passed on route; information about traffic signals on crosswalks; route numbers not announced for named routes. If set to wheelchair, changes the defaults for max_distance, walking_speed, and step_penalty to be better aligned to the needs of wheelchair users.`,
0 commit comments