An API providing detailed information about 100 million places, using the database behind Google Maps and Google+.
Questions tagged [google-places]
830 questions
-1
votes
1 answer
pub get failed: Because flutter_google_places >=0.2.5 depends on rxdart ^0.24.0 on rxdart ^0.23.1,
I am trying to build a flutter application and want to use flutter_google_places dependency in it but it is showing me this following error:
Because flutter_google_places >=0.2.5 depends on rxdart ^0.24.0 and flutter_google_places >=0.2.4 <0.2.5…

Ankit
- 481
- 1
- 8
- 27
-1
votes
1 answer
How to share data from one react native component to another component
i have a component "Address" were i am using google-places-autocomplete for getting address.After that i extract the needed data (such as Country,postal code etc). And now i want to transfer this data into the "Main Component" for where the is…

Suraj Das
- 11
- 3
-1
votes
1 answer
How to display list of ATM in my route based on source and destination
I am trying to display a list of ATM in my route(source & destination). I know there is a placeAPI to get nearby ATM but I wanna get list of ATM in my route and I have not been able to get it based on my source and destination. Is there any API or…

Dilip
- 2,271
- 5
- 32
- 52
-1
votes
1 answer
Places API details are different than Google search
I've stumbled upon something when using Google's Places API to retrieve info about a place.
When I retrieve the info for one specific place using the Place Details API request, I get a different total rating than when opening the same place (with…

mglonnro
- 151
- 10
-1
votes
1 answer
Load Google places api into component library (no index.html file)
Currently in my code "places" is undefined.
This is in a component library that is consumed by other applications so it it's self does not have access to an Index.html file.
.ts code
import { MapsAPILoader } from '@agm/core';
import { Component,…

Funn_Bobby
- 647
- 1
- 20
- 57
-1
votes
1 answer
Can't get extra details on Google Places API like 'opening_hours'
I can't seem to get the opening hours by using google places api.
I used google maps to find a business with hours and rating. I chose a mcdonalds.
I then used google's tool to search the place_id of the address.
Which gets me the…

Sunwoo Yang
- 1,213
- 2
- 12
- 22
-1
votes
1 answer
Google places API returns rating for properties searched using property name, but not with an address
I am using a Google Places API to return ratings for an entered property. When I enter the property name as the search term, a rating is returned, but if I attempt to return a rating by using an address (which is supported by the text input) I do…

CESBoston
- 83
- 1
- 10
-1
votes
3 answers
Get Google map place name from Lat/Lng geocoded
I am using Google API, I am trying to get Place name against pinning Lat Lng on the map.
I understand Google don’t have place names against Lat Longs but against Place ID
What I am doing is Geocoding Lat longs to get the address, and send its Place…

max_code
- 307
- 3
- 14
-1
votes
2 answers
I want to implement Google Map view to get the location that users taps
In Android I was able to call Google Places screen to let user pick a location to save it, I want to do this with flutter.
I searched and found almost nothing implement that, and I understood that now this is the the most official library (still not…

Abdallah Gaber
- 65
- 1
- 11
-1
votes
1 answer
cant pass GeoDataClient in placeAutocomplete adapter?
I am trying to make a google place autocomplete adapter. But im getting the following error: Ive been sstuck on this for 2 days now :( so any help would be greatly appreciated!!
cant pass mGeoDataClient
The error i am recieving
Here is my…

Tman
- 5
- 5
-1
votes
1 answer
How to resolve multiple errors in Initializing google new AutocompleteSupportFragment (google places)
I am attempting to migrate to the new places SDK. I have successfully added all the libraries to my app-level build.gradle, and updated my XML fragment. However, the code implementation to initialize the AutocompleteSupportFragment has multiple…

Ken
- 41
- 4
-1
votes
1 answer
Need to authorize my Android app to use Google Maps API
I'm making a mobile application with Google Maps and seem to have an error with my API key. I have my API enabled and the appropriate API key, but I'm getting this error:
"error_message" : "This IP, site or mobile application is not authorized to…

Eoghan Casey
- 190
- 3
- 17
-1
votes
1 answer
next page token google places
I'm trying to go to the next page but i had the error request denied i managed a code and i got juste 20 records i used also sleep to hold up the request but without any chance can you help me please:
from googleplaces import GooglePlaces, types,…

Mohammed Rasfa
- 105
- 1
- 11
-1
votes
1 answer
Google Maps specify origin with place id
I can specify the origin with latitude and longtitude using
DirectionsService.route({
origin: new google.maps.LatLng(-34.397, 150.644)
...
Is there a way to do it with place id?
origin: new…

Avery235
- 4,756
- 12
- 49
- 83
-1
votes
2 answers
Google Places API: OVER_QUERY_LIMIT
I am getting an error notifying me of exceeding the API Quota. However, I have a quota of 150,000 requests and have only used up 12,000 of them. What is causing this error?
example of code:
from googleplaces import GooglePlaces
api_key =…

Riley Hun
- 2,541
- 5
- 31
- 77