看着做一个使用手机定位服务的应用程序,据我所知,当前位置以纬度/经度返回。
将其转换为位置和/或找到最近的“邮局”(例如他们所在的位置)的最佳方法是什么?
我知道您可以将纬度/经度传递给谷歌地图 API 并获取位置,但这是最好的方法还是有更好的方法?
看着做一个使用手机定位服务的应用程序,据我所知,当前位置以纬度/经度返回。
将其转换为位置和/或找到最近的“邮局”(例如他们所在的位置)的最佳方法是什么?
我知道您可以将纬度/经度传递给谷歌地图 API 并获取位置,但这是最好的方法还是有更好的方法?
看看GeoCoder和getFromLocation方法
试试这个代码:
// create geo point
GeoPoint point = new GeoPoint((int) (lattitude * 1E6), (int) (longitude * 1E6));
// get the MapController object
MapController controller = mapview.getController();
// animate to the desired point
controller.animateTo(point);