web-dev-qa-db-ja.com

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

Googleマップで住所の場所を表示したい。

Google Maps APIを使用して住所の緯度と経度を取得するにはどうすればよいですか?

103
Kandha
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変数は、変換されたアドレスを保持します。

132
ud_an

更新された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;
}
69
Nayanesh Gupte

あなたがGoogleマップにあなたのアドレスを配置したい場合は、次を使用する簡単な方法

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

OR

あなたの住所から緯度経度を取得する必要がある場合は、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;
    }

これがあなたや他の人に役立つことを願っています。ありがとうございました..!!

51
Nirav Dangi

次のコードは、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)です。

6
Neutrino

これは、マップをクリックした場所の緯度と経度を見つける方法です。

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

それはうまく機能します。

場所の住所を取得するには、ジオコーダークラスを使用できます。

3

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

「Java.io.IOExceptionサービスが利用できません」をスローします。すでにそれらの許可を与えてライブラリを含めます...マップビューを取得できます...ジオコーダーでIOExceptionをスローします...

試行後にcatch IOExceptionを追加しただけで問題が解決しました

    catch(IOException ioEx){
        return null;
    }
1
ylag75
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();
        }
0
Manikanta Reddy