3

我需要按街道名称获取经度和纬度。我看到Geocoder可以完成这项工作。文档告诉我们“Geocoder 类需要一个不包含在核心 android 框架中的后端服务”。这意味着我不能确定 Geocoder 是否在 Android 设备中实现。

我的问题是,地理编码器的实施有多广泛。如果只有很少的设备没有 Geocoder,我可以忍受,但如果有很多设备,我必须重新考虑我的应用程序的这个功能。


4

2 回答 2

2

我们应该使用 GeoCoder 类的 isPresent() 方法来决定。

http://developer.android.com/reference/android/location/Geocoder.html#isPresent()

于 2013-12-19T10:42:17.880 回答
1

GeoCoder 客户端与 Google Maps 一起包含,因此任何带有 Google Maps 的设备都应该有一个有效的 GeoCoder 实现。总的来说,Android 设备都安装了 Google 地图。除此之外,可能没有 Google Maps 和其他一些可用的 GeoCoder 后端。在这种情况下,您可以使用以下代码来确定设备是否具有有效的 GeoCoder 实现:

final Geocoder geocoder = new Geocoder(this);
final String locName = "1600 Amphitheatre Parkway, Mountain View, CA";
try {
    final List<Address> list = geocoder.getFromLocationName(locName, 1);
    if ( ! (list == null || list.isEmpty()) ) {
        final Address address = list.get(0);
        System.out.println("Geocoder backend present, (lat,lon) = (" + address.getLatitude() + ", " + address.getLongitude() + ")");
    }
    else {
        System.out.println("Geocoder backend not present");
    }
} catch (IOException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}
于 2012-08-25T14:03:56.483 回答