如何在android中使用GPS坐标检索当前位置?

时间:2012-09-25 08:26:36

标签: android gps locationmanager reverse-geocoding

我已经成功地以编程方式检索了GPS坐标,但我想从那个坐标中跟踪实际位置(即pune / Banglore / Mumbai),那该怎么可能呢?

2 个答案:

答案 0 :(得分:0)

你会反向GeoCoding:

Geocoder geocoder = new Geocoder(mContext, Locale.getDefault());

这是一个教程 http://developer.android.com/training/basics/location/geocoding.html

答案 1 :(得分:0)

你的意思是地址,对吗?看看这个:
http://mobiforge.com/developing/story/using-google-maps-android

在页面底部,你有代码示例:)