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
0 answers

Google Map Places Api Error: STATUS CODE 9011 | Android

I am trying to use places api in android app. But I got error status code 9011. As per the documentation (https://developers.google.com/places/android-sdk/reference/com/google/android/libraries/places/api/net/PlacesStatusCodes) this error code means…
sum20156
  • 646
  • 1
  • 7
  • 19
1
vote
0 answers

React cache google places api search results

So i have the following functional component that works fine. What i want to do is cache the results so i am not hitting the api over and over again for same search term. import React, { useState, useEffect, useRef } from "react"; import…
Maxqueue
  • 2,194
  • 2
  • 23
  • 55
1
vote
0 answers

google places api: placesClient.findAutocompletePredictions returns task unsuccessful

i used placesClient.findAutocompletePredictions to return location suggestions to set them my search bar, but when i use this functions below, task is always insuccessul why is that, is it from the api key but i enabled places api!!. Result always…
1
vote
1 answer

Google Places API returns 0 results after deploying on Google Cloud

I have developed an application that is powered by Google Places API. The problem is the places are loading when running locally but not after deploying it on google cloud. I am using a default keyword to fetch the desired results but surprisingly…
ksa
  • 311
  • 1
  • 10
  • 29
1
vote
1 answer

Google Maps JavaScript API library must be loaded

Hello guys I am new to React and I am using react-places-autocomplete https://www.npmjs.com/package/react-places-autocomplete and facing the following error: Error: [react-places-autocomplete]: Google Maps JavaScript API library must be loaded. See:…
Rakesh kushwaha
  • 709
  • 1
  • 10
  • 22
1
vote
2 answers

Convert raw image data to something usable in html

I've seen a couple of posts on here similar to this, but I was unable to find a solution that works so I'm hoping a fresh conversation on the topic might offer some more clarity. I'm working with the google places api, and when I try to get an image…
tganyan
  • 603
  • 3
  • 9
  • 23
1
vote
1 answer

Using places api photo returns "Unexpected token � in JSON at position 0"

I'm currently playing with the google places api to gain some comfort level with it, but I've come up on an issue that has me a little stumped and I'm hoping someone can course correct me here. I'm making api calls to a local proxy server, and so…
tganyan
  • 603
  • 3
  • 9
  • 23
1
vote
1 answer

FATAL EXCEPTION: AsyncTask #4 java.lang.RuntimeException: An error occurred while executing doInBackground()

Please help me, I don't know how to solve this, my code error and comes up like this: 2020-08-24 15:29:36.424 25891-26358/com.cryptbrn.treasify E/AndroidRuntime: FATAL EXCEPTION: AsyncTask #4 Process: com.cryptbrn.treasify, PID: 25891 …
1
vote
0 answers

How to filter json data from Google's Places API using the "types" keyword with python

I have pulled json data from Google's Places API using Python. I have gotten to the point of being able to extract the name and phone number for each establishment. I can do this for the types of businesses supported in the API ("car_repair" for…
Justin Benfit
  • 423
  • 3
  • 11
1
vote
1 answer

Google Places Android showing error " place fields must not be empty"?

When I click Places Auto complete fragment search box , I am getting the following error place fields must not be empty (9012) I already migrated to new places SDK . Also checked my Google Billing and Maps API. Everything is correct My…
RagAnt
  • 1,064
  • 2
  • 17
  • 35
1
vote
0 answers

Vue.js Google Places Autocomplete Error net::ERR_CONNECTION_REFUSED - API V3

My Vue.js front end is using from https://github.com/xkjyeah/vue-google-maps package. When it loads the module it usually shows the error below. I assumed it is associated to the following tag ''. I realized all…
1
vote
0 answers

How can I show multiple gates/entrances using Google Places/Directions API?

We are using Places API to show predicted addresses (Swift language). screenshot here Now we have to display all entrances\gates of the places (if they are available) like in this app Is it possible to make it in Google PlacesAPI or we need to use…
1
vote
0 answers

Didn't find class "com.android.volley.toolbox.JsonObjectRequest" on path: DexPathList

I am using https://github.com/DWorkS/VolleyPlus library for implementing multipart in my project but this library conflicted with compile 'com.android.volley:volley:1.0.0' dependency says " Program type already present:…
1
vote
0 answers

This API project is not authorized to use this API when I reload the url

I am trying to use google places api with https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=33.8670522,151.1957362&radius=500&key=. I have activated geocoding and geolocation api. When I first open the url, the data is visible…
1
vote
1 answer

How can I get exact sub category name about a place from Google Places API in Android/Java?

See this screenshot: image If you'll carefully see the Image, for Fashion stop category is Men's clothing store and for Fabindia - Clothing store is written. I also want this type of category name, but when I integrated API, I'm getting category…
user14016240
1 2 3
99
100