Skip to content

Commit 6fc66d1

Browse files
chore: update dist folder [skip ci]
1 parent d028f7e commit 6fc66d1

11 files changed

Lines changed: 367 additions & 363 deletions

dist/documentation/parameters/maps_http_parameters_placeautocomplete.html

Lines changed: 39 additions & 39 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/documentation/parameters/maps_http_parameters_placeautocomplete.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,21 @@
66

77
The text string on which to search. The Place Autocomplete service will return candidate matches based on this string and order results based on their perceived relevance.
88

9+
- <h3 class="parameter-name" id="radius">radius</h3>
10+
11+
Defines the distance (in meters) within which to return place results. You may bias results to a specified circle by passing a `location` and a `radius` parameter. Doing so instructs the Places service to *prefer* showing results within that circle; results outside of the defined area may still be displayed.
12+
13+
The radius will automatically be clamped to a maximum value depending on the type of search and other parameters.
14+
15+
- Autocomplete: 50,000 meters
16+
- Nearby Search:
17+
- with `keyword` or `name`: 50,000 meters
18+
- without `keyword` or `name`
19+
- Up to 50,000 meters, adjusted dynamically based on area density, independent of `rankby` parameter.
20+
- When using `rankby=distance`, the radius parameter will not be accepted, and will result in an `INVALID_REQUEST`.
21+
- Query Autocomplete: 50,000 meters
22+
- Text Search: 50,000 meters
23+
924
<h2 id="optional-parameters">Optional parameters</h2>
1025

1126
- <h3 class="parameter-name" id="components">components</h3>
@@ -54,21 +69,6 @@
5469

5570
The origin point from which to calculate straight-line distance to the destination (returned as `distance_meters`). If this value is omitted, straight-line distance will not be returned. Must be specified as `latitude,longitude`.
5671

57-
- <h3 class="parameter-name" id="radius">radius</h3>
58-
59-
Defines the distance (in meters) within which to return place results. You may bias results to a specified circle by passing a `location` and a `radius` parameter. Doing so instructs the Places service to *prefer* showing results within that circle; results outside of the defined area may still be displayed.
60-
61-
The radius will automatically be clamped to a maximum value depending on the type of search and other parameters.
62-
63-
- Autocomplete: 50,000 meters
64-
- Nearby Search:
65-
- with `keyword` or `name`: 50,000 meters
66-
- without `keyword` or `name`
67-
- Up to 50,000 meters, adjusted dynamically based on area density, independent of `rankby` parameter.
68-
- When using `rankby=distance`, the radius parameter will not be accepted, and will result in an `INVALID_REQUEST`.
69-
- Query Autocomplete: 50,000 meters
70-
- Text Search: 50,000 meters
71-
7272
- <h3 class="parameter-name" id="region">region</h3>
7373

7474
The region code, specified as a [ccTLD ("top-level domain")](https://en.wikipedia.org/wiki/List_of_Internet_top-level_domains#Country_code_top-level_domains) two-character value. Most ccTLD codes are identical to ISO 3166-1 codes, with some notable exceptions. For example, the United Kingdom's ccTLD is "uk" (.co.uk) while its ISO 3166-1 code is "gb" (technically for the entity of "The United Kingdom of Great Britain and Northern Ireland").

dist/documentation/parameters/maps_http_parameters_placenearbysearch.html

Lines changed: 66 additions & 66 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/documentation/parameters/maps_http_parameters_placenearbysearch.md

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,32 @@
66

77
The point around which to retrieve place information. This must be specified as `latitude,longitude`.
88

9+
- <h3 class="parameter-name" id="radius">radius</h3>
10+
11+
Defines the distance (in meters) within which to return place results. You may bias results to a specified circle by passing a `location` and a `radius` parameter. Doing so instructs the Places service to *prefer* showing results within that circle; results outside of the defined area may still be displayed.
12+
13+
The radius will automatically be clamped to a maximum value depending on the type of search and other parameters.
14+
15+
- Autocomplete: 50,000 meters
16+
- Nearby Search:
17+
- with `keyword` or `name`: 50,000 meters
18+
- without `keyword` or `name`
19+
- Up to 50,000 meters, adjusted dynamically based on area density, independent of `rankby` parameter.
20+
- When using `rankby=distance`, the radius parameter will not be accepted, and will result in an `INVALID_REQUEST`.
21+
- Query Autocomplete: 50,000 meters
22+
- Text Search: 50,000 meters
23+
24+
- <h3 class="parameter-name" id="type">type</h3>
25+
26+
Restricts the results to places matching the specified type. Only one type may be specified. If more than one type is provided, all types following the first entry are ignored.
27+
28+
- `type=hospital|pharmacy|doctor` becomes `type=hospital`
29+
- `type=hospital,pharmacy,doctor` is ignored entirely
30+
31+
See the list of [supported types](https://developers.google.com/maps/documentation/places/web-service/supported_types).
32+
33+
<div class="note">Note: Adding both `keyword` and `type` with the same value (`keyword=cafe&type=cafe` or `keyword=parking&type=parking`) can yield `ZERO_RESULTS`.</div>
34+
935
<h2 id="optional-parameters">Optional parameters</h2>
1036

1137
- <h3 class="parameter-name" id="keyword">keyword</h3>
@@ -50,39 +76,13 @@
5076

5177
Returns up to 20 results from a previously run search. Setting a `pagetoken` parameter will execute a search with the same parameters used previously — all parameters other than pagetoken will be ignored.
5278

53-
- <h3 class="parameter-name" id="radius">radius</h3>
54-
55-
Defines the distance (in meters) within which to return place results. You may bias results to a specified circle by passing a `location` and a `radius` parameter. Doing so instructs the Places service to *prefer* showing results within that circle; results outside of the defined area may still be displayed.
56-
57-
The radius will automatically be clamped to a maximum value depending on the type of search and other parameters.
58-
59-
- Autocomplete: 50,000 meters
60-
- Nearby Search:
61-
- with `keyword` or `name`: 50,000 meters
62-
- without `keyword` or `name`
63-
- Up to 50,000 meters, adjusted dynamically based on area density, independent of `rankby` parameter.
64-
- When using `rankby=distance`, the radius parameter will not be accepted, and will result in an `INVALID_REQUEST`.
65-
- Query Autocomplete: 50,000 meters
66-
- Text Search: 50,000 meters
67-
6879
- <h3 class="parameter-name" id="rankby">rankby</h3>
6980

7081
Specifies the order in which results are listed. Possible values are:
7182

7283
- `prominence` (default). This option sorts results based on their importance. Ranking will favor prominent places within the set radius over nearby places that match but that are less prominent. Prominence can be affected by a place's ranking in Google's index, global popularity, and other factors. When prominence is specified, the `radius` parameter is required.
7384
- `distance`. This option biases search results in ascending order by their distance from the specified location. When `distance` is specified, one or more of `keyword`, `name`, or `type` is required and `radius` is disallowed.
7485

75-
- <h3 class="parameter-name" id="type">type</h3>
76-
77-
Restricts the results to places matching the specified type. Only one type may be specified. If more than one type is provided, all types following the first entry are ignored.
78-
79-
- `type=hospital|pharmacy|doctor` becomes `type=hospital`
80-
- `type=hospital,pharmacy,doctor` is ignored entirely
81-
82-
See the list of [supported types](https://developers.google.com/maps/documentation/places/web-service/supported_types).
83-
84-
<div class="note">Note: Adding both `keyword` and `type` with the same value (`keyword=cafe&type=cafe` or `keyword=parking&type=parking`) can yield `ZERO_RESULTS`.</div>
85-
8686

8787
<p style="text-align: right; font-size: smaller;">Generated from the <a class="gc-analytics-event" data-category="GMP" data-label="openapi-github" href="https://github.com/googlemaps/openapi-specification" title="Google Maps Platform OpenAPI Specification" class="external">OpenAPI specification</a>.
8888
<a class="gc-analytics-event" data-category="GMP" data-label="openapi-github-maps-http-parameters-placenearbysearch" data-action="edit" style="margin-left: 5px;" href="https://github.com/googlemaps/openapi-specification/tree/main/specification/parameters" title="Edit on GitHub"><span class="material-icons">edit</span> Edit</a>

0 commit comments

Comments
 (0)