gpt4 book ai didi

android - 如何从 500 多个地址中获取经纬度?

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:49:52 24 4
gpt4 key购买 nike

我在数据库中有 700 多个地址。我想明智地绘制它们。我已经实现了这段代码:

public LatLng getSingleLocationFromAddress(String strAddress)
{
Geocoder coder = new Geocoder(this, Locale.getDefault());
List<Address> address = null;
Address location = null;
GeoPoint p1 = null;
LatLng temp = null;//new LatLng(26.0000, 121.0000);
String strAddresNew = strAddress.replace(",", " ");
try
{
address = coder.getFromLocationName(strAddresNew, 1);
if (!address.isEmpty())
{
location = address.get(0);
location.getLatitude();
location.getLongitude();
temp = new LatLng(location.getLatitude(), location.getLongitude());
Log.d("Latlng : ", temp + "");
} else
{
arrTemp.add(strAddress);
System.out.println(arrTemp);
}
} catch (IOException e)
{
Toast.makeText(mContext, e.toString(), Toast.LENGTH_LONG).show();
e.printStackTrace();
} catch (Exception e)
{
e.printStackTrace();
}
return temp;
}

但问题是当我像这样在循环中调用这个方法时:

Marker TP1 = googleMap.addMarker(new MarkerOptions().position(getSingleLocationFromAddress(fullAddress)));

coder.getFromLocationName(strAddresNew, 1); 对某些地址返回 null,例如,如果我有一个包含 7 个地址的 ArrayList,那么我只得到 4- 5 个 LatLong 值。

最佳答案

使用下面的代码行...它会对您有所帮助

在你的 OncreateOncreatView 之上声明这些变量

List<Address> From_geocode = null;
private double sLat, sLong;
private Geocoder geocoder;

在你的 oncreateoncreateVIew 中使用这些代码行

geocoder = new Geocoder(getActivity());

try {
From_geocode = geocoder.getFromLocationName("PUT THE ADDRESS HERE", 1);
} catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
if (From_geocode.size() > 0) {
System.out.println("2");
From_geocode.get(0).getLatitude(); // getting
// latitude
From_geocode.get(0).getLongitude();

sLat = From_geocode.get(0).getLatitude();
sLong = From_geocode.get(0).getLongitude();

System.out.println("LATITUTE====="+sLat+" LONGITUTE====="+sLong);

}

并在 list 文件中提供条目

<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.INTERNET" />

关于android - 如何从 500 多个地址中获取经纬度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30521933/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com