住所から緯度と経度を見つけるにはどうすればよいですか?


回答:


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 service not available」をスローします
Kandha

3
サービスにアクセスするには、適切な権限が必要です。#<uses-permission android:name = "android.permission.ACCESS_COARSE_LOCATION" /> <uses-permission android:name = "android.permission.INTERNET" />
Flo

アプリケーションをビルドしているAndroid APIのバージョン。GoogleAPIを使用するには、Google APIを使用する必要があります。GoogleAPI 8でビルドします。プロジェクトにGoogle APIフォルダーがあることを確認してください。マニフェストファイルに、usesライブラリcom.google.android.mapsを追加します
ud_an

1
私はすでにそれらの許可を与え、ライブラリを含めています...マップビューを取得できます...ジオコーダーでそのIOExceptionをスローします...
Kandha

6
以下の@NayAneshGupteの回答を確認してくださいGeoPoint。新しいライブラリにクラスはないと思います。代わりにを使用してくださいLatLngstackoverflow.com/a/27834110/2968401
user2968401 2015

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
おかげで、私にとってはうまくいきました、上記の解決策はうまくいきませんでした。
リズワンソハイブ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

あなたがグーグルマップにあなたの住所を置きたいなら、次を使用する簡単な方法

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

または

あなたの住所から緯度長い得るために必要ならば、使用してGoogleの場所の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 2017

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

上記のカンダ問題への答え:

「java.io.IOExceptionサービスを利用できません」をスローします。これらのアクセス許可をすでに与えており、ライブラリを含めます...マップビューを取得できます...ジオコーダーでその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
そのnullチェックは何もしていません。
AjahnCharles 2017

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.