How to get complete address from latitude and longitude?

前端 未结 21 2158
深忆病人
深忆病人 2020-11-22 09:07

I want to get following values from Latitude and Longitude in android

  1. Street Address
  2. City / State
  3. Zip
  4. Complete Address
<
21条回答
  •  醉酒成梦
    2020-11-22 09:36

    Use this it work for me :D

    Retrieve json data of the latitude and longitude.

    https://maps.googleapis.com/maps/api/geocode/json?key=AIzaSyAr29XeWWAeWZcrOgjjfs3iSnqkWtAz4No&latlng=2.1812,102.4266&sensor=true

    Change latitude , longitude with your own place.

    https://maps.googleapis.com/maps/api/geocode/json?key=<\API_KEY_HERE>&latlng="latitude","longitude"&sensor=true

    You can change the <\API_KEY_HERE> with your own key.

    Need to enable api service in google console for new api key.

    Hope it helps :D

提交回复
热议问题