react-native-google-places
react-native-google-places copied to clipboard
iOS/Android Google Places Widgets (Autocomplete Modals) and API Services for React Native Apps
`node_modules\react-native-google-places\android\src\main\java\com\arttitude360\reactnative\rngoogleplaces\RNGooglePlacesModule.java:451: error: cannot access zzbgl if (place.getViewport() != null) { ^ class file for com.google.android.gms.internal.zzbgl not found.` Any fix for this error? I'm using version `3.0.1`
Hi, I had to update the library version because there is a new sdk for google places and the previous will stops working soon. So I updated the library and...
I'm trying to run this code: export function getAddressPredictions(){ return(dispatch, store)=>{ let userInput = store().home.resultTypes.pickUp ? store().home.inputData.pickUp : store().home.inputData.dropOff; console.log(store().home) console.log(userInput) RNGooglePlaces.getAutocompletePredictions(userInput, { type: 'cities', country: 'NG' } ) .then((results)=>...
I'm attempting to upgrade to the latest version of this library. I have followed all the steps in the new android guide, but when attempting to open the autocomplete modal,...
Dependencies in package.json "dependencies": { "apisauce": "0.16.0", "i18n-js": "3.0.11", "lodash.throttle": "4.1.1", "mobx": "4.2.1", "mobx-react": "5.2.8", "mobx-state-tree": "2.0.5", "ramda": "0.25.0", "react": "16.6.1", "react-native": "0.57.7", "react-native-autocomplete-search": "^1.0.8", "react-native-collapsible": "^1.4.0", "react-native-confirmation-code-input": "^1.0.4", "react-native-extended-stylesheet":...
Hello, at the moment of opening the component the autocomplete is closed when writing something in the search engine, seeing the logcat of AndroidStudio tells me E / Places: Error...
Hi, First of all, great work with the library :) Due to our pipeline, I need auto adding the dependencies into the Podfile when linking so I've added some scripts...
When a search a location using google maps it searches for similar location but when I try to search to search the same location using react native google places, using...
@tolu360, over in https://github.com/tolu360/react-native-google-places/issues/60#issuecomment-317367219 you suggested using the web API to retrieve place photos. Google's looming pricing/quota changes for its places, maps, and routes APIs change the situation significantly. Securing...
Given google's pricing changes for autocompletion requests, I believe it's now significantly cheaper to group autocomplete requests with a session token: https://developers.google.com/places/web-service/autocomplete Is it possible to add a session token...