Get location name from the latitude and longitude in react-native

14,952

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

Share:
14,952
ganesh konathala
Author by

ganesh konathala

Much interested in new technologies and open to any suggestions from the community.

Updated on June 04, 2022

Comments

  • ganesh konathala
    ganesh konathala almost 2 years

    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?

    • Tholle
      Tholle almost 6 years
      Could you include the component you have written so far when trying to display the user's location?