Questions tagged [google-places-api]

The Google Places API is a service that returns information about places using HTTP requests. Places are defined within this API as establishments, geographic locations, or prominent points of interest.

The Google Places API is a service that returns information about places using HTTP requests. Places are defined within this API as establishments, geographic locations, or prominent points of interest.

The Places API is also available with the Java Client, Python Client, Go Client and Node.js Client for Google Maps Services. The Places API and the client libraries are for use in server applications.

If you're building a client-side application, take a look at the Places SDK for Android, the Places SDK for iOS, and the Places Library, Maps JavaScript API.

Links

Related tags

4993 questions
1
vote
1 answer

How to call Google Places API from within Firebase Cloud Functions?

I am trying to implement a location autocomplete feature in my Flutter App with the help of the Google Places API and its autocomplete feature. To keep the API-calling logic and the API Key away from the Client, the Flutter App should call a…
1
vote
1 answer

Needing to grab the Rating number form Google Places API and not just the stars

Using Google places and RatingBarIndicator. Everything is working as it should however, in addition to the rating stars I would love to have the rating number to the right of the stars, however, all documentation I have seen on RatingBarIndicator…
Scubadivingfool
  • 1,227
  • 2
  • 10
  • 23
1
vote
1 answer

Android Place SDK restricted API key is not working

I know that place API requires server key to use but I am using place SDK for android. I am using restricted Android API key (Restricted using package name and SHA1) but it is giving me below error: This IP, site or mobile application is not…
Smeet
  • 4,036
  • 1
  • 36
  • 47
1
vote
1 answer

How can I replace Google Place autocomplete "not found" picture in Android

I want to replace this picture only How to to this? Does anybody know? Please help.
Vladimir Fisher
  • 3,090
  • 2
  • 17
  • 23
1
vote
1 answer

How to implement google places autocomplete programmatically and get also the latlng with kotlin?

I get the address but not the latlng package shweta.com.googleplacesautocomplete import android.util.Log import android.webkit.WebStorage import com.google.android.gms.maps.CameraUpdateFactory import com.google.android.gms.maps.GoogleMap import…
1
vote
0 answers

Number of Visitors by Hour

Is there a way to obtain from the Google Map API, the number of visitors to a place by hour of the year? I saw that I could get information like reviews and price level for a place, but not the number of visitors per hour. Essentially, I want to get…
Brian L
  • 11
  • 1
1
vote
1 answer

Autocomplete search with flutter_google_places doesn't work?

I'm developing my first more complex project, similar to the Uber app idea. I follow the instructions in this question autocomplete with flutter But when i try to search for addresses, nothing appears I'm using GetX for state management Here's my…
1
vote
0 answers

Google Place search, text search, and nearby search don't return certain exact matches

I'm trying to return google places with a given name and location. Google Places API has 3 options for searching for places: Find Place Nearby Search Text Search I tried all 3 endpoints, but certain places never get returned even when the query…
MuhsinFatih
  • 1,891
  • 2
  • 24
  • 31
1
vote
0 answers

How to use Google Autocomplete 'addListener' in Vue to update child component?

I'm trying to update a Leaflet map when an address has been selected from the Google Places Autocomplete API. Bascially, there are two Vue components; My main component "MyPlan.vue" and its child "MyMap.vue". When I choose an address from the…
Peter
  • 21
  • 3
1
vote
3 answers

Flutter Bottom Container Swipe Up

I'm making an app which shows place detail when clicking a place on Google Maps. I can open a container at bottom of the page but I want to do that when the user swipe this container to up with animation, the container will cover the whole page and…
Onur
  • 318
  • 4
  • 12
1
vote
2 answers

Using Google places api in flutter

I've been using Google Places Search in flutter using my own simple client service which uses Google Places API. I've noticed there are other SDK specifically designed for Android and IOS - (Places SDK for Android / IOS) When I looked inside the key…
e-j5
  • 1,759
  • 1
  • 11
  • 23
1
vote
1 answer

Return value from Google Places getDetails callback asynchronously

Is it possible to make a Google Places callback from getDetails function asynchronus or return it's value? Essentially, in my react app, I am trying to do the following: pass a placeId to google places api wait for google to bring back some place…
asus
  • 1,427
  • 3
  • 25
  • 59
1
vote
1 answer

Returning Business contact information from Google Places Library in React application

I am trying to return an object of business details, address phone number, and website from Google API. I had used places API only to encounter cors issues as it is a server-side API. The recommendation is to use Places library but there is no…
fatpig888
  • 11
  • 1
1
vote
0 answers

Special characters in Google Places Autocomplete

I ran into a problem when using Google Places Autocomplete API (https://developers.google.com/maps/documentation/javascript/places-autocomplete) I want to find town "Лиман, Астраханская область", but in Google Maps it saved with stress on letter…
1
vote
1 answer

Input gets disabled when Google Places API Autocomplete fails authorization

When using Google Places API Autocomplete with Vue/Vuetify, if the API script fails to authorize, the text field becomes disabled and further input is disallowed after the first character. How can I make it so that it fails quietly in the background…