如何从地址中找到经纬度?


Answers:


139
public GeoPoint getLocationFromAddress(String strAddress){

Geocoder coder = new Geocoder(this);
List<Address> address;
GeoPoint p1 = null;

try {
    address = coder.getFromLocationName(strAddress,5);
    if (address==null) {
       return null;
    }
    Address location=address.get(0);
    location.getLatitude();
    location.getLongitude();

    p1 = new GeoPoint((double) (location.getLatitude() * 1E6),
                      (double) (location.getLongitude() * 1E6));

    return p1;
    }
}

strAddress是包含地址的字符串。该address变量保存转换后的地址。


1
它抛出“ java.io.IOException服务不可用”
Kandha,2010年

3
您需要正确的权限才能访问该服务。#<用途的许可机器人:名称= “android.permission.ACCESS_COARSE_LOCATION”/> <用途的许可机器人:名称= “android.permission.INTERNET对”/>
弗洛

您正在构建哪个android api版本的应用程序,您需要具备可用的google api我已经使用google api 8进行了构建。检查项目中是否存在google api文件夹。并在清单文件中添加使用库com.google.android.maps
ud_an 2010年

1
我已经授予了这些权限并包括了图书馆...我可以获取地图视图...它在地理编码器上抛出了IOException ...
Kandha 2010年

6
在下面查看@NayAneshGupte的答案,我认为GeoPoint新库中没有类。改为使用LatLngstackoverflow.com/a/27834110/2968401
user2968401 2015年

80

Ud_an的解决方案具有更新的API

注意LatLng类是Google Play服务的一部分。

强制性的

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

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

更新:如果您具有目标SDK 23及更高版本,请确保注意位置的运行时权限。

public LatLng getLocationFromAddress(Context context,String strAddress) {

    Geocoder coder = new Geocoder(context);
    List<Address> address;
    LatLng p1 = null;

    try {
        // May throw an IOException
        address = coder.getFromLocationName(strAddress, 5);
        if (address == null) {
            return null;
        }

        Address location = address.get(0);
        p1 = new LatLng(location.getLatitude(), location.getLongitude() );

    } catch (IOException ex) {

        ex.printStackTrace();
    }

    return p1;
}

2
谢谢,它为我工作,上述解决方案不起作用。
Rizwan Sohaib 2015年

1
实例化Geocoder时,您应该传递上下文Geocoder coder = new Geocoder(this); 或新的Geocoder(getApplicationContext)而不是答案中所述的getActivity()。
The_Martian 2015年

1
上面的代码@Quantumdroid是用片段编写的。否则,您绝对正确。这是上下文。
Nayanesh Gupte 2015年

2
美丽而干净的解决方案。没有任何答案提到Geocoder使用同步访问,因此强烈建议将其放在后台服务中以避免阻塞UI。
The_Martian

1
很好的解决方案。输入无效的地址/邮政编码时,将调用IOException。您可以通过简单的方法if(address.size() <1){//show a Toast}else{//put rest of code here}
Grantespo,2018年

51

如果您想在Google地图中放置您的地址,那么使用以下简便方法

Intent searchAddress = new  Intent(Intent.ACTION_VIEW,Uri.parse("geo:0,0?q="+address));
startActivity(searchAddress);

要么

如果您需要从地址中获取较长时间,请使用以下Google Place Api

创建一个返回带有HTTP调用响应的JSONObject的方法,如下所示

public static JSONObject getLocationInfo(String address) {
        StringBuilder stringBuilder = new StringBuilder();
        try {

        address = address.replaceAll(" ","%20");    

        HttpPost httppost = new HttpPost("http://maps.google.com/maps/api/geocode/json?address=" + address + "&sensor=false");
        HttpClient client = new DefaultHttpClient();
        HttpResponse response;
        stringBuilder = new StringBuilder();


            response = client.execute(httppost);
            HttpEntity entity = response.getEntity();
            InputStream stream = entity.getContent();
            int b;
            while ((b = stream.read()) != -1) {
                stringBuilder.append((char) b);
            }
        } catch (ClientProtocolException e) {
        } catch (IOException e) {
        }

        JSONObject jsonObject = new JSONObject();
        try {
            jsonObject = new JSONObject(stringBuilder.toString());
        } catch (JSONException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        return jsonObject;
    }

现在将JSONObject传递给getLatLong()方法,如下所示

public static boolean getLatLong(JSONObject jsonObject) {

        try {

            longitute = ((JSONArray)jsonObject.get("results")).getJSONObject(0)
                .getJSONObject("geometry").getJSONObject("location")
                .getDouble("lng");

            latitude = ((JSONArray)jsonObject.get("results")).getJSONObject(0)
                .getJSONObject("geometry").getJSONObject("location")
                .getDouble("lat");

        } catch (JSONException e) {
            return false;

        }

        return true;
    }

我希望这对您和其他人有帮助。谢谢..!!


1
不幸的是,该解决方案不适用于某些移动运营商的移动连接:请求始终返回OVER_QUERY_LIMIT。那些移动运营商使用NAT重载,将相同的IP分配给许多设备...
Umberto

@UmbySlipKnot您能解释有关OVER_QUERY_LIMIT的更多信息吗?那是什么?谢谢。
FariborZ

7

以下代码适用于Google apiv2:

public void convertAddress() {
    if (address != null && !address.isEmpty()) {
        try {
            List<Address> addressList = geoCoder.getFromLocationName(address, 1);
            if (addressList != null && addressList.size() > 0) {
                double lat = addressList.get(0).getLatitude();
                double lng = addressList.get(0).getLongitude();
            }
        } catch (Exception e) {
            e.printStackTrace();
        } // end catch
    } // end if
} // end convertAddress

其中的地址是您要转换为LatLng的字符串(123 Testing Rd城市州邮政编码)。


3

这是您可以找到我们在地图上单击的位置的经度和纬度的方法。

public boolean onTouchEvent(MotionEvent event, MapView mapView) 
{   
    //---when user lifts his finger---
    if (event.getAction() == 1) 
    {                
        GeoPoint p = mapView.getProjection().fromPixels(
            (int) event.getX(),
            (int) event.getY());

        Toast.makeText(getBaseContext(), 
             p.getLatitudeE6() / 1E6 + "," + 
             p.getLongitudeE6() /1E6 , 
             Toast.LENGTH_SHORT).show();
    }                            
    return false;
} 

它运作良好。

要获取位置的地址,我们可以使用geocoder类。


1

上面的Kandha问题的答案:

它抛出了“ java.io.IOException服务不可用”,我已经授予了这些权限并包含了库...我可以获取地图视图...它在IO编码器中抛出了IOException ...

我只是在尝试后添加了一个IOException捕获,它解决了问题

    catch(IOException ioEx){
        return null;
    }

0
Geocoder coder = new Geocoder(this);
        List<Address> addresses;
        try {
            addresses = coder.getFromLocationName(address, 5);
            if (addresses == null) {
            }
            Address location = addresses.get(0);
            double lat = location.getLatitude();
            double lng = location.getLongitude();
            Log.i("Lat",""+lat);
            Log.i("Lng",""+lng);
            LatLng latLng = new LatLng(lat,lng);
            MarkerOptions markerOptions = new MarkerOptions();
            markerOptions.position(latLng);
            googleMap.addMarker(markerOptions);
            googleMap.animateCamera(CameraUpdateFactory.newLatLngZoom(latLng,12));
        } catch (IOException e) {
            e.printStackTrace();
        }

1
空检查没有任何作用。
AjahnCharles

0
public void goToLocationFromAddress(String strAddress) {
    //Create coder with Activity context - this
    Geocoder coder = new Geocoder(this);
    List<Address> address;

    try {
        //Get latLng from String
        address = coder.getFromLocationName(strAddress, 5);

        //check for null
        if (address != null) {

            //Lets take first possibility from the all possibilities.
            try {
                Address location = address.get(0);
                LatLng latLng = new LatLng(location.getLatitude(), location.getLongitude());

                //Animate and Zoon on that map location
                mMap.moveCamera(CameraUpdateFactory.newLatLng(latLng));
                mMap.animateCamera(CameraUpdateFactory.zoomTo(15));
            } catch (IndexOutOfBoundsException er) {
                Toast.makeText(this, "Location isn't available", Toast.LENGTH_SHORT).show();
            }

        }


    } catch (IOException e) {
        e.printStackTrace();
    }
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.