From 06df5a84c436c914d7f62478d1b16bd9ecbd6e92 Mon Sep 17 00:00:00 2001 From: Rafa de la Torre Date: Mon, 21 Nov 2016 11:51:51 +0100 Subject: [PATCH] Fix typo: s/isolines/routes/ --- doc/routing_functions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/routing_functions.md b/doc/routing_functions.md index 4b9b5e7..9524026 100644 --- a/doc/routing_functions.md +++ b/doc/routing_functions.md @@ -12,7 +12,7 @@ Name | Type | Description | Accepted values --- | --- | --- | --- `origin` | `geometry(Point)` | Origin point, in 4326 projection, which defines the start location. | `destination` | `geometry(Point)` | Destination point, in 4326 projection, which defines the end location. | -`mode` | `text` | Type of transport used to calculate the isolines. | `car`, `walk`, `bicycle` or `public_transport` +`mode` | `text` | Type of transport used to calculate the routes. | `car`, `walk`, `bicycle` or `public_transport` `options` | `text[]` | (Optional) Multiple options to add more capabilities to the analysis. See [Optional routing parameters](#optional-routing-parameters) for details. `units` | `text` | Unit used to represent the length of the route. | `kilometers`, `miles`. By default is `kilometers` @@ -47,7 +47,7 @@ Returns a route that goes from origin to destination and whose path travels thro Name | Type | Description | Accepted values --- | --- | --- | --- `waypoints` | `geometry(Point)[]` | Array of ordered points, in 4326 projection, which defines the origin point, one or more locations for the route path to travel through, and the destination. The first element of the array defines the origin and the last element the destination of the route. | -`mode` | `text` | Type of transport used to calculate the isolines. | `car`, `walk`, `bicycle` or `public_transport` +`mode` | `text` | Type of transport used to calculate the routes. | `car`, `walk`, `bicycle` or `public_transport` `options` | `text[]` | (Optional) Multiple options to add more capabilities to the analysis. See [Optional routing parameters](#optional-routing-parameters) for details. `units` | `text` | Unit used to represent the length of the route. | `kilometers`, `miles`. By default is `kilometers`