4

我正在尝试找到一种方法来将给定的街道地址转换为与 android 应用程序中的谷歌地图的坐标。请有任何建议或一些链接来阅读它?

4

1 回答 1

1

尝试这个

 Geocoder geocoder = new Geocoder(getApplicationContext(), Locale.getDefault());
 String textToSearch = searchText.getText().toString();
 List<Address> fromLocationName = null;
 fromLocationName = geocoder.getFromLocationName(texToSearch,   1);
 if (fromLocationName != null && fromLocationName.size() > 0) {
    Address a = fromLocationName.get(0);
    GeoPoint point = new GeoPoint(
                         (int) (a.getLatitude() * _1E6), 
                         (int) (a.getLongitude() * _1E6));
 }
于 2012-12-04T08:18:00.773 回答