看着做一个使用电话位置服务的应用程序,根据我的理解,当前位置在lat / lon中返回。
将此转换为某个位置和/或找到距离最近的“邮局”的最佳方法是什么?
我知道你可以将lat / lon传递到google maps API并获取位置,但这是最好的方法还是有更好的方法?
答案 0 :(得分:1)
查看GeoCoder和方法 getFromLocation
答案 1 :(得分:0)
试试这段代码:
// 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);