我写了一个简单的地理编码应用程序,但它没有工作。我已经给了所有必要的权限。请有人告诉我我哪里出错了。提前等。
public class ForgeocdingActivity extends Activity {
Geocoder gc;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
final EditText ed=(EditText)findViewById(R.id.editText1);
Button b1=(Button)findViewById(R.id.button1);
final String to_add = ed.getText().toString();
b1.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0)
{
try
{
List<Address> address2 = gc.getFromLocationName(to_add,3);
if(address2 != null && address2.size() > 0)
{
double lat1 = address2.get(0).getLatitude();
double lng1 = address2.get(0).getLongitude();
Toast.makeText(getBaseContext(), "Lat:"+lat1+"Lon:"+lng1, Toast.LENGTH_SHORT).show();
}
}
catch(Exception e)
{
e.printStackTrace();
}
}
});
}
}
答案 0 :(得分:1)
请在下面写下
的代码Geocoder geocoder = new Geocoder(this, Locale.getDefault());
List<Address> addresses = geocoder.getFromLocation(currentlat, currentlng, 1);
现在,地址列表包含最近的已知区域,并将此代码测试到真实设备中。
答案 1 :(得分:0)
以下是地理编码的工作示例:
Geocoder geocoder = new Geocoder(this, Locale.getDefault());
try {
List<Address> list = geocoder.getFromLocation(lat,long, 1);
String address = list.get(0).getAddressLine(0) + ", " + list.get(0).getAddressLine(1) + ", " + list.get(0).getAddressLine(2);
} catch (IOException e) {
e.printStackTrace();
}
“this”=活动上下文,“long”=经度,“lat”=纬度
答案 2 :(得分:0)
我认为你可以尝试从address1获取经度和纬度。然后你将从下面的代码获得经度和经度 列表地址= geocoder.getFromLocation(LATITUDE,LONGITUDE,1);