5,857 questions
1
vote
1
answer
66
views
Google Places Autocomplete Widget not appearing when using Angular Material Dialog
I recently upgraded to Angular v21 and Googe Places Autocomplete New widget.
When typing in address the options are hidden away, they activate overflow on the mat dialog content isntead of being ...
1
vote
1
answer
73
views
Google Places (New) Autocomplete Data API not working with trailing whitespace
When I type a space into the end of my input, all the suggestions from the Google Places (New) Autocomplete Data API disappear. When you lose focus (click somewhere else) and refocus on the input, the ...
Best practices
0
votes
1
replies
53
views
Google Review Widget
I built my own reviews widget using the Google Places API.
While doing that, I came across Google’s branding and user reviews guidelines:
https://about.google/brand-resource-center/guidance/user-...
0
votes
1
answer
87
views
How to restrict Google Places Autocomplete to real delivery addresses in South Africa
I’m using the new Google Places API and need to send a correctly formatted address to a delivery company in South Africa.
I need the Autocomplete to return only real, deliverable street addresses (not ...
0
votes
0
answers
75
views
Google Places SDK: How to prevent iOS text search from sorting results by distance?
I'm using the Google Places SDK for iOS and Android, along with the new Places API (New), to implement text-based place search (e.g., "pizza" near the current location).
I'm passing the same ...
1
vote
1
answer
253
views
Using the Google Maps API, how can I retrieve the name of a building with only the street address?
I have a list of street addresses (eg: 123 Main Street) for which I need to identify the name of the building/institution at that address. The process by which I've been approaching this is to first ...
1
vote
0
answers
58
views
RESOURCE_EXHAUSTED: Quota exceeded for quota metric 'GetPlaceRequest' and limit 'GetPlaceRequest per minute' of service 'places.googleapis.com'
It is unclear at this point what the differences are between Place API New vs Legacy. In the latter, you never see these errors come up but on new they do. Why is that the case?
If I look at the ...
0
votes
1
answer
182
views
Google Maps - Places API: Why can't I combine ADDRESS and ESTABLISHMENT in setTypesFilter()?
I'm using the Places SDK for Android and trying to get both addresses and business names in autocomplete predictions. Since setTypeFilter() was deprecated, I switched to setTypesFilter() as ...
1
vote
2
answers
231
views
Google maps place id refresh
I have a relatively simple question, I can't find an answer for. I'm using the google places api and store the ids. However the documentation states, that refreshing placeId is free of charge. It's ...
0
votes
0
answers
88
views
How to avoid Atmospheric data in Google Places API Nearby Search
My requirement is to get all the place names under a specific place category from address_components within 500m of a location specified by latitude and longitude. I am using Google Places API (...
0
votes
0
answers
109
views
Google Places API always returns only 20 results, no nextPageToken for any query
I’m using Google Places API (v1 places:searchText) to search businesses.
For every query (e.g. “Namkeen Companies in Delhi”, “Hotels in India”), I only get 20 results.
The response never includes ...
0
votes
1
answer
53
views
Register Form not saving the latitude and longitude of the location
I am developing a website using Next.js and Supabase with the Google Places API to set a location. At the moment, when a new account is created the formatted address of the user is saved, but I'm not ...
0
votes
0
answers
90
views
google places api autocomplete is billing every request
I´m using the new places api with JS.
I have the following functions:
let request = {
input: '',
locationBias: { lat: -1, lng: -1 },
language: 'pt-BR',
get includedPrimaryTypes() {
...
2
votes
1
answer
670
views
Setting an initial address for Google Places PlaceAutocompleteElement
Since Google deprecated its old places autocomplete API in March 2025, we've been converting to the newer API.
We had a use case with a requirement to set the initial value of Google's "New" ...
0
votes
1
answer
196
views
Google Maps Places API - 50km radius restriction not being enforced?
Problem
According to the official Google Maps Places API documentation, the radius parameter is limited to 50,000 meters (50 km) for Autocomplete requests:
radius
The radius will automatically be ...