주소에서 위도와 경도를 어떻게 찾을 수 있습니까?


답변:


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

3
서비스에 액세스하려면 올바른 권한이 필요합니다. # <uses-permission android : name = "android.permission.ACCESS_COARSE_LOCATION"/> <uses-permission android : name = "android.permission.INTERNET"/>
Flo

어떤 안드로이드 API 버전을 빌드하고 있는지 Google API를 사용할 수 있어야합니다. Google API 8로 빌드했습니다. 프로젝트에 Google API 폴더가 있는지 확인하십시오. 그리고 매니페스트 파일에서 추가 라이브러리 com.google.android.maps
ud_an 2010-08-27

1
난 이미 그 권한을주고 라이브러리를 포함 ... 내가지도보기를 얻을 수 있습니다 ... 그것은 슬로우 지오 코더에서 IOException이 ...
Kandha

6
아래 @NayAneshGupte의 답변을 확인하십시오 GeoPoint. 새 라이브러리에 클래스 가 없다고 생각 합니다. 대신 LatLng. stackoverflow.com/a/27834110/2968401
user2968401

80

API가 업데이트 된 Ud_an의 솔루션

참고 : 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); 또는 답변에 명시된대로 getActivity ()가 아닌 새로운 Geocoder (getApplicationContext).
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

51

Google지도에 주소를 넣으려면 다음을 사용하는 쉬운 방법

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

또는

당신이 당신의 주소에서 위도 긴 얻기 위해 필요한 경우 다음 사용 구글 플레이스 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를 반환합니다 . 이러한 이동 통신 사업자 ... 많은 장치에 동일한 IP를 할당, NAT 오버로드를 사용
움베르토

@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

여기서 address는 LatLng로 변환하려는 문자열 (123 Testing Rd City State zip)입니다.


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

잘 작동한다.

위치 주소를 얻기 위해 지오 코더 클래스를 사용할 수 있습니다.


1

위의 Kandha 문제에 대한 답변 :

"java.io.IOException 서비스를 사용할 수 없음"이 발생합니다. 이미 해당 권한을 부여하고 라이브러리를 포함합니다.지도보기를 얻을 수 있습니다. 지오 코더에서 IOException이 발생합니다.

시도 후 catch 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();
    }
}
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.