tweaks to docs (#200)

This commit is contained in:
Dominic Wong
2021-09-02 15:23:24 +01:00
committed by GitHub
parent 2e5af32faf
commit d378ef2de5
39 changed files with 83 additions and 88 deletions

View File

@@ -3,6 +3,6 @@ Etas, routes and turn by turn directions
# Routing Service
The routing service provides a faster and cheaper alternative to the Google Maps API.
Get etas, routes and turn by turn directions all from openstreetmap data.
Get etas, routes, and turn by turn directions all from OpenStreetMap data.
Powered by [OSRM](http://project-osrm.org/)

View File

@@ -56,7 +56,7 @@ message Direction {
repeated Intersection intersections = 7;
}
// Turn by turn directions from a starting and endpoint including maneuvers and bearings
// Turn by turn directions from a start point to an end point including maneuvers and bearings
message DirectionsRequest {
// The staring point for the journey
Point origin = 1;
@@ -81,7 +81,7 @@ message EtaRequest {
Point origin = 1;
// The end point for the eta calculation
Point destination = 2;
// type of transport e.g car, foot, bicycle
// type of transport. Only "car" is supported currently.
string type = 3;
// speed in kilometers
double speed = 4;