All Questions
Tagged with google-places-api ios
539 questions
2
votes
1
answer
203
views
Strange empty circle in Google Places autocomplete for iOS 26
After updating my app with the iOS 26, the Google Place picker autocomplete automatically added a empty circle in the left side:
How I can remove or add an image instead of that empty with circle ...
0
votes
0
answers
85
views
Google Places SDK: How to prevent iOS text search from sorting results by distance?
I'm using the Google Places SDK for iOS and Android, along with the new Places API (New), to implement text-based place search (e.g., "pizza" near the current location).
I'm passing the same ...
12
votes
2
answers
1k
views
GooglePlaces SDK Breaks XCode Preview
I have a project connected to the FirebaseSDK which runs perfectly fine in Build, Simulator, Preview, and when Run on my iPhone 16 Pro.
However, I need to use the GoogleMaps SDK. When I install the ...
0
votes
1
answer
114
views
How to combine business name and address to find the point of interest using the Google Places API Text Search?
I am building an application that is using Apple's MapKit framework as well as Google's Places API. The reason is mainly saving costs.
My current situation is, that I have an MKMapItem and want to ...
0
votes
0
answers
236
views
The new Google Places Swift SDK for iOS only results in Internal Error
I am building a new app and am trying to use the new Google Places Swift SDK for iOS. I am following these guides provided by Google:
Google Setup Guide and Google Text Search Guide
Unfortunately, I ...
0
votes
0
answers
541
views
Google Places Autocomplete API returning "The Places API server returned a response we couldn't understand" (Error Code -2)
I'm using the Google Places API in my iOS app to fetch autocomplete suggestions for places within a specific geographical region. However, I'm receiving an error, and I haven't been able to resolve it....
0
votes
0
answers
63
views
_OBJC_CLASS_$ errors on M1 Macbook - Google Maps-Places
I recently moved my code base from an old intel based macbook to a new M1 based macbook. All of my cocoapods went to hell, so I swapped all of them for swift packages and completely removed all ...
-1
votes
1
answer
150
views
How can i add GMSAutocompleteSessionToken to GMSAutocompleteViewController on iOS
I found the documentation not clear enough on how to add a sessionToken when instantiating a built-in autocomplete controller (GMSAutocompleteViewController).
Is this even needed / possible ?
Could ...
25
votes
5
answers
43k
views
building for iOS Simulator, but linking in object file built for iOS
Before I integrated Google Places in my app, I had no problem running it on simulators, but now I can run my app only on physical devices. I tried excluding arm64, like it was suggested in many ...
0
votes
1
answer
236
views
GMSPlace Auto Complete Always return same Place coordinate
the return of auto Autocomplete always give the same value.
func viewController(_ viewController: GMSAutocompleteViewController, didAutocompleteWith place: GMSPlace) {
print("Place name: \...
2
votes
2
answers
3k
views
Xcode throwing arm64 architecture error for Macmini with M1 chip
I am facing some issues into XCode with Apple New Macmini with M1 chip.
Into My Application i used RazorPay so it is throwing below error even after updating pods.
Module 'Razorpay' was created for ...
0
votes
1
answer
297
views
Update mapview data in separate view controller
Note: you don't have to be familiar with Google Maps SDK or Places SDK to answer this question. Hi I am using a GMSMapView on my main MapViewController and GMSPlacesClient from Places SDK on a child ...
-1
votes
1
answer
435
views
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 ...
5
votes
1
answer
967
views
Migrating to Places 4.0 SDK, how to migrate place Bias?
I am migrating to the new places SDK 4.0
The old func was:
findAutocompletePredictions(fromQuery: query,
bounds: bounds,
boundsMode: .bias,
...
7
votes
2
answers
3k
views
How to properly restrict Google Maps (Places, Geocoding) API calls to Android and iOS Apps (written in Flutter)?
I have a mobile app written in Flutter. I am calling Google API's for Places and for Geocoding. Since the calls to these services are made by including the key in the url it is very important that ...