Android获取GPS地址

时间:2014-06-19 20:00:17

标签: android gps location

我的应用程序读入并向我提供了手机的GPS坐标。

然后我想做一个反向地理编码给我物理地址

我使用此代码来执行此操作

        double latitude = gps.getLatitude();
        double longitude = gps.getLongitude();

        Geocoder geocoder = new Geocoder(this, Locale.getDefault());
        try {
            List<Address> addresses = geocoder.getFromLocation(latitude, longitude, 1);



        } catch (IOException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        }

我现在如何干杯地址 即时通过某种方式显示屏幕上坐标的地址

任何帮助申请

标记

1 个答案:

答案 0 :(得分:0)

您可以尝试使用Google地理编码API。它是谷歌地图api的一部分,所以你可能无法使用他们的api进行独立通话,但它值得一试。

https://developers.google.com/maps/documentation/geocoding/#ReverseGeocoding