我正在尝试找到一种方法,如何在 android 应用程序中将给定的街道地址转换为谷歌 map 的坐标。请提供任何建议或一些链接来阅读它?
最佳答案
试试这个
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));
}
关于android - 将街道地址转换为坐标android,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13698556/