0

簡単なジオコーディングアプリケーションを作成しましたが、機能していません。必要なすべての権限を付与しました。どこが間違っているか教えてください。よろしくお願いします。

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();
                }
            }
        });

    }
}
4

3 に答える 3

1

そのために以下のコードを書いてください

Geocoder geocoder = new Geocoder(this, Locale.getDefault());
List<Address> addresses = geocoder.getFromLocation(currentlat, currentlng, 1);

これで、アドレスのリストに最も近い既知の領域が含まれ、このコードを実際のデバイスでテストします。

于 2012-07-11T10:58:26.870 に答える
0

address1から緯度と経度を取得してみてください。次に、次のコードから緯度と経度を取得します。リストアドレス= geocoder.getFromLocation(LATITUDE、LONGITUDE、1);

于 2012-07-11T11:30:10.267 に答える
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」=緯度

于 2012-07-11T10:43:17.697 に答える