Solve walking scenarios and determine which places and areas are accessible by a pedestrian.
Developers get access to ready-to-use routing services solving the most common pedestrian scenarios.
/drive_from
Drive from categorized places which are accessible by car to the pedestrian location.
name | type | description | option | sample |
lat | NUMBER | The latitude representing the current pedestrian location. | required | 50.746708 |
lon | NUMBER | The longitude representing the current pedestrian location. | required | 7.074405 |
category | NUMBER | The defined category e.g. 15059 for Hospital Unit of the place from where a car tries to reach the current pedestrian location. | required | 15059 |
/solve_walking
Solves walking areas representing areas which are accessible by a pedestrian.
name | type | description | option | sample |
lat | NUMBER | The latitude representing the current pedestrian location. | required | 50.746708 |
lon | NUMBER | The longitude representing the current pedestrian location. | required | 7.074405 |
breaks | STRING | Defines the break values in minutes for each walking area. Every break value must be in the range [1, 300], and not more than 50 break values are supported. | optional | 5, 10, 15 |
/walk_from
Walk from categorized places which are accessible to the pedestrian location.
name | type | description | option | sample |
lat | NUMBER | The latitude representing the current pedestrian location. | required | 50.746708 |
lon | NUMBER | The longitude representing the current pedestrian location. | required | 7.074405 |
category | NUMBER | The defined category e.g. 13007 for Beer Garden of the place from where we try to reach the current pedestrian location. | required | 13007 |
/walk_to
Walk to categorized places which are accessible by a pedestrian.
name | type | description | option | sample |
lat | NUMBER | The latitude representing the current pedestrian location. | required | 50.746708 |
lon | NUMBER | The longitude representing the current pedestrian location. | required | 7.074405 |
category | NUMBER | The defined category e.g. 13007 for Beer Garden of the place which should be accessed from the current pedestrian location. | required | 13007 |
References:
[1] geopedestrian API @RapidAPI
Solve walking scenarios and determine which places and areas are accessible by a pedestrian.