Questions tagged [google-places-autocomplete]

The Place Autocomplete service is a web service that returns place predictions in response to an HTTP request. The request specifies a textual search string and optional geographic bounds. The service can be used to provide autocomplete functionality for text-based geographic searches, by returning places such as businesses, addresses and points of interest as a user types.

424 questions
7
votes
1 answer

Google place autocomplete API with SwiftUI

I am trying to implement auto search for address in my App using SwiftUI. Google tutorial are based on UIKit, I was hoping if someone has tried and can guide me to the right direction. Thanks
xOneOne
  • 71
  • 2
7
votes
0 answers

Error 'get output frames failed, state 8196' whilst using Google Places API

I have a searchController getting data from Google Places API. I am using a UITableView to populate the cells, however, they are not being populated (I assume due to the above error) I have all the delegates set up TableView is reloading data The…
David Henry
  • 1,972
  • 20
  • 43
7
votes
2 answers

Formik validation not working for my custom react-places-autocomplete component

I have the following component that makes a form and use formik for form validation and has a custom input field created with react-places-autocomplete for entering an address to the form. the form is working fine, However the validation is not…
Kamran
  • 819
  • 3
  • 14
  • 22
7
votes
2 answers

Google Places API Error - ApiException: 9008: PLACES_API_INVALID_APP

I want to use Google Places API in one of my Android Application. But I'm getting this error: com.google.android.gms.tasks.RuntimeExecutionException: com.google.android.gms.common.api.ApiException: 9008: PLACES_API_INVALID_APP What I have…
6
votes
3 answers

Cannot find name 'google' angular 8

As it shows error during build. ERROR in app/pages/TestPage4/TestPage4.ts:27:27 - error TS2304: Cannot find name 'google'. 27 this.geoCoder = new google.maps.Geocoder; ~~~~~~ app/pages/TestPage4/TestPage4.ts:29:32 - error TS2304: Cannot find…
user10668235
6
votes
3 answers

Can I obtain coordinates with google places autocomplete?

I can't understand if I can obtain coordinates with a google places autocomplete response. Or do I have to make an explicit request to google maps with formatted address coming from the google places response?
user1518217
  • 574
  • 1
  • 8
  • 20
5
votes
1 answer

Google Places Text Search API Issue

Requirement: Need to search business through the address and in the result list Business name should return. Problem: When we search by only address of the business ( without business name ), then in the result list it returns only the address or…
Vik
  • 5,931
  • 3
  • 31
  • 38
5
votes
3 answers

How Do I Change Placeholder Text on Google Places Autocomplete Component in React Native?

I have been trying to find a way to change the placeholder text for a GooglePlacesAutocomplete Component in React Native. I have tried looking through the official documentation and did not see anything on this. Does someone have a solution to this?…
5
votes
3 answers

migrating to Places API, cannot resolve GEO_DATA_API GeoDataApi

I'm going through the process of migrating from depricated Places SDK to the Places API as described here, using the compatibility library. Everything had been working fine prior to attempting the migration. I've 1) Updated my dependencies 2)…
5
votes
2 answers

New Google Places Autocomplete crashes on Click

I used new dependency of Google places. And app crashes when click on the Autocomplete View. Error is as follows., java.lang.NullPointerException: Place Fields must be set. at…
5
votes
2 answers

Place auto complete is not working after updating to version 3.0.2 - Google iOS sdk

I had the implementation of place auto completion using GMSAutocompleteResultsViewController was working fine so far. But when I updated the sdk to 3.0.2 stopped working. If I revert to version 2.7.0 start working. I have gone through the…
Alex
  • 229
  • 3
  • 15
5
votes
1 answer

Migrating to the New Places SDK Client

When I add in my gradle dependencies implementation 'com.google.android.libraries.places: places: 1.0.0' I continue with the error: Java Compiler error: cannot access Hide org.gradle.api.internal.tasks.compile.CompilationFailedException:…
5
votes
1 answer

GMSPlaceField Error when building - Swift 4.2

I have an app that's using Google's Place Autocomplete, so I've been following the example code that's been provided. I've added the GooglePlace pod to my podfile and since I'm using the same full-screen control, I'm using their sample code. No…
Vandal
  • 708
  • 1
  • 8
  • 21
5
votes
1 answer

How to implement Google Places Autocomplete per session from SDKs?

Is it possible to implement session based autocomplete from the places sdk for Android and iOS apps? According to new Google Maps framework pricing coming into effect June 11th request made to autocomplete can be broken down into keystroke/session…
4
votes
1 answer

Upgraded to Angular 16: Google Places Autocomplete (ngx-google-places-autocomplete) preventing compilation

I'm looking to get support for Google Places Autocomplete for iOS version 16.x (and Android) on mobile devices in portrait mode. So I've upgraded our Angular web application from 14 to 15 and then to 16, where 15 works fine, but when upgrading to 16…
1
2
3
28 29