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
Copy file name to clipboardExpand all lines: docs/services.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1687,6 +1687,7 @@ See the [public documentation][241].
1687
1687
*`config.routing`**[boolean][209]** Specify whether to request additional metadata about the recommended navigation destination. Only applicable for address features. (optional, default `false`)
1688
1688
*`config.fuzzyMatch`**[boolean][209]** Specify whether the Geocoding API should attempt approximate, as well as exact, matching. (optional, default `true`)
1689
1689
*`config.worldview`**[String][208]** Filter results to geographic features whose characteristics are defined differently by audiences belonging to various regional, cultural, or political groups. (optional, default `"us"`)
1690
+
*`config.session_token`**[String][208]?** A unique session identifier generated by the client.
1690
1691
1691
1692
#### Examples
1692
1693
@@ -1758,6 +1759,7 @@ See the [public documentation][245].
1758
1759
*`config.reverseMode`**(`"distance"` | `"score"`)** Set the factors that are used to sort nearby results. (optional, default `'distance'`)
1759
1760
*`config.routing`**[boolean][209]** Specify whether to request additional metadata about the recommended navigation destination. Only applicable for address features. (optional, default `false`)
1760
1761
*`config.worldview`**[String][208]** Filter results to geographic features whose characteristics are defined differently by audiences belonging to various regional, cultural, or political groups. (optional, default `"us"`)
1762
+
*`config.session_token`**[String][208]?** A unique session identifier generated by the client.
1761
1763
1762
1764
#### Examples
1763
1765
@@ -2380,6 +2382,7 @@ See the [public documentation][264].
2380
2382
*`config.autocomplete`**[boolean][209]** Return autocomplete results or not. (optional, default `true`)
2381
2383
*`config.permanent`**[boolean][209]** Specify whether you intend to store the results of the query (true) or not (false, default). Temporary results are not allowed to be cached, while Permanent results are allowed to be cached and stored indefinitely. (optional, default `false`)
2382
2384
*`config.worldview`**[String][208]** Filter results to geographic features whose characteristics are defined differently by audiences belonging to various regional, cultural, or political groups. (optional, default `"us"`)
2385
+
*`config.session_token`**[String][208]?** A unique session identifier generated by the client.
2383
2386
2384
2387
#### Examples
2385
2388
@@ -2463,6 +2466,7 @@ See the [public documentation][265].
2463
2466
[ISO 639-1 language code][244] and optionally one or more IETF subtags for country or script.
2464
2467
*`config.permanent`**[boolean][209]** Specify whether you intend to store the results of the query (true) or not (false, default). Temporary results are not allowed to be cached, while Permanent results are allowed to be cached and stored indefinitely. (optional, default `false`)
2465
2468
*`config.worldview`**[String][208]** Filter results to geographic features whose characteristics are defined differently by audiences belonging to various regional, cultural, or political groups. (optional, default `"us"`)
2469
+
*`config.session_token`**[String][208]?** A unique session identifier generated by the client.
Copy file name to clipboardExpand all lines: services/geocoding-v6.js
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -58,6 +58,7 @@ var featureTypes = [
58
58
* @param {boolean} [config.autocomplete=true] - Return autocomplete results or not.
59
59
* @param {boolean} [config.permanent=false] - Specify whether you intend to store the results of the query (true) or not (false, default). Temporary results are not allowed to be cached, while Permanent results are allowed to be cached and stored indefinitely.
60
60
* @param {String} [config.worldview="us"] - Filter results to geographic features whose characteristics are defined differently by audiences belonging to various regional, cultural, or political groups.
61
+
* @param {String} [config.session_token] - A unique session identifier generated by the client.
* [ISO 639-1 language code](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) and optionally one or more IETF subtags for country or script.
201
202
* @param {boolean} [config.permanent=false] - Specify whether you intend to store the results of the query (true) or not (false, default). Temporary results are not allowed to be cached, while Permanent results are allowed to be cached and stored indefinitely.
202
203
* @param {String} [config.worldview="us"] - Filter results to geographic features whose characteristics are defined differently by audiences belonging to various regional, cultural, or political groups.
204
+
* @param {String} [config.session_token] - A unique session identifier generated by the client.
Copy file name to clipboardExpand all lines: services/geocoding.js
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -48,6 +48,7 @@ var featureTypes = [
48
48
* @param {boolean} [config.routing=false] - Specify whether to request additional metadata about the recommended navigation destination. Only applicable for address features.
49
49
* @param {boolean} [config.fuzzyMatch=true] - Specify whether the Geocoding API should attempt approximate, as well as exact, matching.
50
50
* @param {String} [config.worldview="us"] - Filter results to geographic features whose characteristics are defined differently by audiences belonging to various regional, cultural, or political groups.
51
+
* @param {String} [config.session_token] - A unique session identifier generated by the client.
* @param {'distance'|'score'} [config.reverseMode='distance'] - Set the factors that are used to sort nearby results.
156
157
* @param {boolean} [config.routing=false] - Specify whether to request additional metadata about the recommended navigation destination. Only applicable for address features.
157
158
* @param {String} [config.worldview="us"] - Filter results to geographic features whose characteristics are defined differently by audiences belonging to various regional, cultural, or political groups.
159
+
* @param {String} [config.session_token] - A unique session identifier generated by the client.
0 commit comments