You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 4, 2021. It is now read-only.
Geocoding services might not be included in some Android devices (Kindle, some 4.1 devices, non-google devices). For those special cases the lib can fallback to the [online google maps geocoding service](https://developers.google.com/maps/documentation/geocoding/intro#Geocoding)
84
+
85
+
```js
86
+
importGeocoderfrom'react-native-geocoder';
87
+
// simply add your google key
88
+
Geocoder.fallbackToGoogle(MY_KEY);
89
+
90
+
// use the lib as usual
91
+
let ret =awaitGeocoder.geocodePosition({lat, lng})
0 commit comments