3

At present i'm getting latitude and longitude form navigator.geolocation.watchPosition(success,error,{}) in react-native. But I want to display users location. How can i do that without using google Geocoding API?

ganesh konathala
  • 317
  • 1
  • 4
  • 14
  • Could you include the component you have written so far when trying to display the user's location? – Tholle Jul 06 '18 at 09:17

1 Answers1

3

What you're looking for is probably a reverse geocoding service (i.e. convert lonlat to street address). If so, you can make use of Google Maps Reverse Geocoding

Possible duplicate of Use Geocoder to return the device address

iridescent
  • 383
  • 1
  • 13