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/dyn/places_v1.Text.html
-25Lines changed: 0 additions & 25 deletions
Original file line number
Diff line number
Diff line change
@@ -97,19 +97,6 @@ <h3>Method Details</h3>
97
97
{ # Request proto for SearchText.
98
98
"includedType": "A String", # The requested place type. Full list of types supported: https://developers.google.com/places/supported_types. Only support one included type.
99
99
"languageCode": "A String", # Place details will be displayed with the preferred language if available. If the language code is unspecified or unrecognized, place details of any language may be returned, with a preference for English if such details exist. Current list of supported languages: https://developers.google.com/maps/faq#languagesupport.
100
-
"location": { # [Deprecated!]The region to search. # [Deprecated!]The region to search. Setting location would usually yields better results. Recommended to set. This location serves as a bias unless strict_restriction is set to true, which turns the location to a strict restriction.
101
-
"rectangle": { # A latitude-longitude viewport, represented as two diagonally opposite `low` and `high` points. A viewport is considered a closed region, i.e. it includes its boundary. The latitude bounds must range between -90 to 90 degrees inclusive, and the longitude bounds must range between -180 to 180 degrees inclusive. Various cases include: - If `low` = `high`, the viewport consists of that single point. - If `low.longitude` > `high.longitude`, the longitude range is inverted (the viewport crosses the 180 degree longitude line). - If `low.longitude` = -180 degrees and `high.longitude` = 180 degrees, the viewport includes all longitudes. - If `low.longitude` = 180 degrees and `high.longitude` = -180 degrees, the longitude range is empty. - If `low.latitude` > `high.latitude`, the latitude range is empty. Both `low` and `high` must be populated, and the represented box cannot be empty (as specified by the definitions above). An empty viewport will result in an error. For example, this viewport fully encloses New York City: { "low": { "latitude": 40.477398, "longitude": -74.259087 }, "high": { "latitude": 40.91618, "longitude": -73.70018 } } # A rectangle box defined by northeast and southwest corner.
102
-
"high": { # An object that represents a latitude/longitude pair. This is expressed as a pair of doubles to represent degrees latitude and degrees longitude. Unless specified otherwise, this object must conform to the WGS84 standard. Values must be within normalized ranges. # Required. The high point of the viewport.
103
-
"latitude": 3.14, # The latitude in degrees. It must be in the range [-90.0, +90.0].
104
-
"longitude": 3.14, # The longitude in degrees. It must be in the range [-180.0, +180.0].
105
-
},
106
-
"low": { # An object that represents a latitude/longitude pair. This is expressed as a pair of doubles to represent degrees latitude and degrees longitude. Unless specified otherwise, this object must conform to the WGS84 standard. Values must be within normalized ranges. # Required. The low point of the viewport.
107
-
"latitude": 3.14, # The latitude in degrees. It must be in the range [-90.0, +90.0].
108
-
"longitude": 3.14, # The longitude in degrees. It must be in the range [-180.0, +180.0].
109
-
},
110
-
},
111
-
"strictRestriction": True or False, # Make location field a strict restriction and filter out POIs outside of the given location. If location type field is unset this field will have no effect.
112
-
},
113
100
"locationBias": { # The region to search. This location serves as a bias which means results around given location might be returned. # The region to search. This location serves as a bias which means results around given location might be returned. Cannot be set along with location_restriction.
114
101
"circle": { # Circle with a LatLng as center and radius. # A circle defined by center point and radius.
115
102
"center": { # An object that represents a latitude/longitude pair. This is expressed as a pair of doubles to represent degrees latitude and degrees longitude. Unless specified otherwise, this object must conform to the WGS84 standard. Values must be within normalized ranges. # Required. Center latitude and longitude. The range of latitude must be within [-90.0, 90.0]. The range of the longitude must be within [-180.0, 180.0].
@@ -147,10 +134,6 @@ <h3>Method Details</h3>
147
134
"priceLevels": [ # Used to restrict the search to places that are marked as certain price levels. Users can choose any combinations of price levels. Default to select all price levels.
148
135
"A String",
149
136
],
150
-
"priceRange": { # int 32 range. Both min and max are optional. If only min is set, then the range only has a lower bound. If only max is set, then range only has an upper bound. At least one of min and max must be set. Values are inclusive. # [Deprecated!]Used to restrict the search to places that are within a certain price range. This is on a scale of 0 to 4. Set a minimum of 0 or set a maximum of 4 has no effect on the search results. Min price is default to 0 and max price is default to 4. Default value will be used if either min or max is unset.
151
-
"max": 42, # Upper bound. If unset, behavior is documented on the range field.
152
-
"min": 42, # Lower bound. If unset, behavior is documented on the range field.
153
-
},
154
137
"rankPreference": "A String", # How results will be ranked in the response.
155
138
"regionCode": "A String", # The Unicode country/region code (CLDR) of the location where the request is coming from. This parameter is used to display the place details, like region-specific place name, if available. The parameter can affect results based on applicable law. For more information, see http://www.unicode.org/reports/tr35/#unicode_region_subtag. Note that 3-digit region codes are not currently supported.
156
139
"strictTypeFiltering": True or False, # Used to set strict type filtering for included_type. If set to true, only results of the same type will be returned. Default to false.
@@ -197,7 +180,6 @@ <h3>Method Details</h3>
197
180
"month": 42, # Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
198
181
"year": 42, # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
199
182
},
200
-
"dateDeprecated": "A String", # Output only. Date of the endpoint expressed in RFC3339 format in the local timezone for the place. For example 2010-12-31.
201
183
"day": 42, # Output only. A day of the week, as an integer in the range 0-6. 0 is Sunday, 1 is Monday, etc.
202
184
"hour": 42, # Output only. The hour in 2 digits. Ranges from 00 to 23.
203
185
"minute": 42, # Output only. The minute in 2 digits. Ranges from 00 to 59.
@@ -209,7 +191,6 @@ <h3>Method Details</h3>
209
191
"month": 42, # Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
210
192
"year": 42, # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
211
193
},
212
-
"dateDeprecated": "A String", # Output only. Date of the endpoint expressed in RFC3339 format in the local timezone for the place. For example 2010-12-31.
213
194
"day": 42, # Output only. A day of the week, as an integer in the range 0-6. 0 is Sunday, 1 is Monday, etc.
214
195
"hour": 42, # Output only. The hour in 2 digits. Ranges from 00 to 23.
215
196
"minute": 42, # Output only. The minute in 2 digits. Ranges from 00 to 59.
@@ -242,7 +223,6 @@ <h3>Method Details</h3>
242
223
"month": 42, # Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
243
224
"year": 42, # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
244
225
},
245
-
"dateDeprecated": "A String", # Output only. Date of the endpoint expressed in RFC3339 format in the local timezone for the place. For example 2010-12-31.
246
226
"day": 42, # Output only. A day of the week, as an integer in the range 0-6. 0 is Sunday, 1 is Monday, etc.
247
227
"hour": 42, # Output only. The hour in 2 digits. Ranges from 00 to 23.
248
228
"minute": 42, # Output only. The minute in 2 digits. Ranges from 00 to 59.
@@ -254,7 +234,6 @@ <h3>Method Details</h3>
254
234
"month": 42, # Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
255
235
"year": 42, # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
256
236
},
257
-
"dateDeprecated": "A String", # Output only. Date of the endpoint expressed in RFC3339 format in the local timezone for the place. For example 2010-12-31.
258
237
"day": 42, # Output only. A day of the week, as an integer in the range 0-6. 0 is Sunday, 1 is Monday, etc.
259
238
"hour": 42, # Output only. The hour in 2 digits. Ranges from 00 to 23.
260
239
"minute": 42, # Output only. The minute in 2 digits. Ranges from 00 to 59.
@@ -309,7 +288,6 @@ <h3>Method Details</h3>
309
288
"month": 42, # Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
310
289
"year": 42, # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
311
290
},
312
-
"dateDeprecated": "A String", # Output only. Date of the endpoint expressed in RFC3339 format in the local timezone for the place. For example 2010-12-31.
313
291
"day": 42, # Output only. A day of the week, as an integer in the range 0-6. 0 is Sunday, 1 is Monday, etc.
314
292
"hour": 42, # Output only. The hour in 2 digits. Ranges from 00 to 23.
315
293
"minute": 42, # Output only. The minute in 2 digits. Ranges from 00 to 59.
@@ -321,7 +299,6 @@ <h3>Method Details</h3>
321
299
"month": 42, # Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
322
300
"year": 42, # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
323
301
},
324
-
"dateDeprecated": "A String", # Output only. Date of the endpoint expressed in RFC3339 format in the local timezone for the place. For example 2010-12-31.
325
302
"day": 42, # Output only. A day of the week, as an integer in the range 0-6. 0 is Sunday, 1 is Monday, etc.
326
303
"hour": 42, # Output only. The hour in 2 digits. Ranges from 00 to 23.
327
304
"minute": 42, # Output only. The minute in 2 digits. Ranges from 00 to 59.
@@ -381,7 +358,6 @@ <h3>Method Details</h3>
381
358
"month": 42, # Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
382
359
"year": 42, # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
383
360
},
384
-
"dateDeprecated": "A String", # Output only. Date of the endpoint expressed in RFC3339 format in the local timezone for the place. For example 2010-12-31.
385
361
"day": 42, # Output only. A day of the week, as an integer in the range 0-6. 0 is Sunday, 1 is Monday, etc.
386
362
"hour": 42, # Output only. The hour in 2 digits. Ranges from 00 to 23.
387
363
"minute": 42, # Output only. The minute in 2 digits. Ranges from 00 to 59.
@@ -393,7 +369,6 @@ <h3>Method Details</h3>
393
369
"month": 42, # Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
394
370
"year": 42, # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
395
371
},
396
-
"dateDeprecated": "A String", # Output only. Date of the endpoint expressed in RFC3339 format in the local timezone for the place. For example 2010-12-31.
397
372
"day": 42, # Output only. A day of the week, as an integer in the range 0-6. 0 is Sunday, 1 is Monday, etc.
398
373
"hour": 42, # Output only. The hour in 2 digits. Ranges from 00 to 23.
399
374
"minute": 42, # Output only. The minute in 2 digits. Ranges from 00 to 59.
0 commit comments