An API providing detailed information about 100 million places, using the database behind Google Maps and Google+.
Questions tagged [google-places]
830 questions
7
votes
2 answers
Google Places API, how do I fetch the reviews?
A few people have asked this before but with no joy. But, it seems as though recently, google have offered the availability to fetch reviews from your google places via their api.
https://developers.google.com/maps/documentation/javascript/places
I…

Daniel Broughan
- 755
- 1
- 9
- 17
6
votes
2 answers
Implementing Google places autoComplete textfield implementation in jetpack compose android
Did anyone implement google autocomplete suggestion text field or fragment in a jetpack compose project? If so kindly guide or share code snippets as I'm having difficulty in implementing it.
Update
Here is the intent that I'm triggering to open…

Ali Nawaz
- 2,016
- 20
- 30
6
votes
1 answer
Google Places Nearby search results - missing detail Data?
I'm currently working on a project in which we perform "Nearby" queries for places using keywords, and then we make follow-up "Detail" requests to obtain more information about specific places of interest.
With Google's new pricing model in the…

Steven
- 1,260
- 9
- 22
6
votes
1 answer
Only want cities and related countries in suggestion using react-places-autocomplete
I want to get only the cities and related countries in the suggestions while typing something into the search field of react-places-autocomplete. I tried with searchOptions prop and had put there {{type: ['(cities)', '(country)']}} which didn't…

Subhojit
- 1,389
- 8
- 19
- 33
6
votes
1 answer
Google Maps Places Autocomplete Set Current Location Default Android
Is it possible that when I click on the autocomplete, it will set the current address as the default string? Pretty much like this post but I can't find any decent answer. Please help. Thank you! :)

ayabbear
- 308
- 4
- 20
6
votes
0 answers
Undefined symbols for architecture x86_64 on Google Places Framework for iOS
I tried to add google places framework into my project that already using google maps framework. I already added GooglePlaces.framework, and dragged GooglePlaces.bundle from its resource, but I got this error when I build my apps.
Undefined symbols…

Sonic Master
- 1,238
- 2
- 22
- 36
6
votes
2 answers
Extracting Google Maps Place Data (specifically gas prices)
I am developing an android app that will take in a fuel range of a vehicle and create a google map of the available gas stations in the area of that fuel range. I can currently get the place data from the Google Nearby Place Search function to get…

stran7mj
- 61
- 1
- 2
6
votes
2 answers
How to get Places.GeoDataApi.getAutocompletePredictions ONLY inside the bounds?
I am using Places.GeoDataApi for Android and I get different search results depending on the location of the device performing the request. I need the results to be consistently located inside the bounds. I don't see where that could be setup in the…

Romina Liuzzi
- 741
- 8
- 13
6
votes
1 answer
Android Cluster manager icon depending on type
I'm working on a small app and have implemented Google Maps and Places api. Currently i'm able to see all my markers on the map and clustering working fine. I'm able to zoom in the clusters open up and able to see the markers. I have a spinner that…

T91
- 135
- 1
- 2
- 9
6
votes
1 answer
Google Places Nearby Search
I'm trying to fetch a local BMW repair facility for Dortmund, Germany. According to Google Maps, there is a BMW dealer nearby to location 51.48488,7.4687013.
The following request matches the above mentioned…

Sebastian Ullrich
- 1,007
- 11
- 21
6
votes
0 answers
Get separate address fields from Google API?
Google Places API can return details about a particular place, given its ID:
Places.GeoDataApi.getPlaceById(mGoogleApiClient, placeId)
The data returned in the callback implements the Place interface, providing access to the address as a…

Richard Le Mesurier
- 29,432
- 22
- 140
- 255
6
votes
1 answer
Google Places API Crashes After Launch
I have been trying to integrate Google Places API into my application, but cannot seem to get the API to launch. Every time I click the button to launch the API it will load, then revert back to the main screen. I believe I have followed all steps…

arim
- 63
- 7
6
votes
3 answers
Google Place with R
My purpose is to use R to query google api.
I have a list of addresses and names (belong to shops, restaurants, etc.) and for each of them I need to store:
"latitude", "longitude", "business type"
My idea is to use google place api:
-Use the Text…

dax90
- 1,088
- 14
- 29
6
votes
0 answers
Use Google Places autocomplete vs nearbysearch with rankby=distannce
I am looking to use Google Places autocomplete to help user search for places near him/her. When using autocomplete in the example below, I get establishment that are very far from the…

Amit Fisher
- 111
- 5
6
votes
2 answers
Parsing "html_attributions" from Google Places response in JAVA
Per policy it is mandatory show "html_attributions" in the app. This response is received as -
"html_attributions" : [ "Listings by \u003ca href=\"http:// Some website.com/\"\u003esSome website\u003c/a\u003e" ]
When I parse it as…

user1930106
- 779
- 1
- 6
- 19