如何获得纬度和来自Android地址的经度?

时间:2012-08-13 10:27:15

标签: android google-maps

  

可能重复:
  How can I find the latitude and longitude from address?

我想得到特定地址的经纬度。我怎么能这样做?

3 个答案:

答案 0 :(得分:4)

private void getFromLocation(String address)
    {
          double latitude= 0.0, longtitude= 0.0;

        Geocoder geoCoder = new Geocoder(this, Locale.getDefault());    
        try 
        {
            List<Address> addresses = geoCoder.getFromLocationName(address , 1);
            if (addresses.size() > 0) 
            {            
                GeoPoint p = new GeoPoint(
                        (int) (addresses.get(0).getLatitude() * 1E6), 
                        (int) (addresses.get(0).getLongitude() * 1E6));

                latitude=p.getLatitudeE6()/1E6;
                longtitude=p.getLongitudeE6()/1E6;


                }
        }
        catch(Exception ee)
        {

        }
    }
}

答案 1 :(得分:2)

这将为您提供(循环)地址字符串的所有匹配项。 如果您只是想要第一场比赛,请确保address.size()大于0,然后选择address.get(0);

在我的使用中,我获得所有匹配,并将其显示为选项。然后,用户单击一个,然后选择该GPS位置。

Geocoder geocoder = new Geocoder(getBaseContext());  
List<Address> addresses;
try {
   addresses = geocoder.getFromLocationName("Example StreeT, UK, DNFE", 20);

   for(int i = 0; i < addresses.size(); i++) { // MULTIPLE MATCHES

     Address addr = addresses.get(i);

     double latitude = addr.getLatitude();
     double longitude = addr.getLongitude(); // DO SOMETHING WITH VALUES

   }

}

答案 2 :(得分:2)

您可以从以下代码中获取

private void GetLatitudeAndLongitude() {
    geocoder = new Geocoder(mContext, Locale.getDefault());
    try {
        List<Address> addresses = geocoder.getFromLocationName(txtLocation.getText().toString().trim().toLowerCase(), 1);
        if (addresses.size() > 0) {
            homeInfoModel.setLalitude(String.valueOf(addresses.get(0).getLatitude()));
            homeInfoModel.setLongitude(String.valueOf(addresses.get(0).getLongitude()));
        }
    } catch (IOException e) {
        e.printStackTrace();
    }
}