react-native-google-places-compat
An update of react-native-google-places library, brings
compatibility with newer React Native version (0.71.x). It addresses dependency and compatibility issues, ensuring
seamless integration with Google Places API for React Native projects.
Installation
npm install react-native-google-places-compat
Usage
Initialize the Google Places Client
Start by initializing the Google Places client with your Places SDK API key. Refer to
the Places SDK documentation for initial
setup instructions. It's important to restrict your key usage as
detailed here.
Replace "your-ios-api-key"
and "your-android-api-key"
with your actual API keys.
RNGooglePlacesCompat.initializePlaceClient(
Platform.OS === 'ios'
? "your-ios-api-key"
: "your-android-api-key",
true
);
Interacting with the Google Places API
Once initialized, you can use the following methods to interact with the Google Places API:
RNGooglePlacesCompat.openAutocompleteModal()
RNGooglePlacesCompat.getAutocompletePredictions()
RNGooglePlacesCompat.getCurrentPlace()
RNGooglePlacesCompat.lookUpPlaceByID()
Managing API Costs with Session Tokens
If you use getAutocompletePredictions
utilize session tokens to optimize API costs.
RNGooglePlacesCompat.setSessionBasedAutocomplete(true);
RNGooglePlacesCompat.initializePlaceClient(apiKey, true);
RNGooglePlacesCompat.refreshSessionToken();
Refer examples in the example directory for more details.
Contributing
See the contributing guide to learn how to contribute to the repository and the development workflow.
License
MIT
Made with create-react-native-library