web-dev-qa-db-ja.com

Androidのアドレスから緯度、経度を取得します

住所から場所の緯度と経度を取得したい。 GPSやネットワークから緯度と経度を取得したくありません。

ユーザーが希望する場所(オフィスなど)の住所をTextViewに入力できるようにして、テキストフィールドの下に、Googleマップアプリで住所を入力するときと同じようにいくつかの候補が表示されるようにします。次に、指定された住所の座標を取得します。

これができない場合は、Googleマップアプリ自体を介して住所を取得する方法があります。おそらく、アプリからgmapsを呼び出すことができ、ユーザーがアドレスを入力すると、gmapsが座標を返します。

どうすればできますか?

15

Android Frameworkで提供されるGeocoder API

私は以前 Android API に存在するジオコーディングAPI)を使用してきましたが、すべてのデバイスで動作するわけではありません。実際、私や他の経験によれば、 Geocoding APIを使用すると、多くのデバイスがnullを返します。

そのため、すべてのデバイスで完全に機能するリバースジオコーダーを使用することを選択しましたが、HTTPリクエストのために追加のオーバーヘッドが必要です。

Reverse Geocoding APIを使用して住所から経度と緯度を取得する

この問題を回避するには、JSONオブジェクトを返す Reverse Geocoding API を使用するだけです。

APIを使用して、緯度と経度から住所を見つけるか、住所から緯度と経度を見つけることができます。

http://maps.googleapis.com/maps/api/geocode/json?address=1600+Amphitheatre+Parkway,+Mountain+View,+CA&sensor=true_or_false

戻り値:

{
   "results" : [
      {
         "address_components" : [
            {
               "long_name" : "1600",
               "short_name" : "1600",
               "types" : [ "street_number" ]
            },
            {
               "long_name" : "Amphitheatre Pkwy",
               "short_name" : "Amphitheatre Pkwy",
               "types" : [ "route" ]
            },
            {
               "long_name" : "Mountain View",
               "short_name" : "Mountain View",
               "types" : [ "locality", "political" ]
            },
            {
               "long_name" : "Santa Clara",
               "short_name" : "Santa Clara",
               "types" : [ "administrative_area_level_2", "political" ]
            },
            {
               "long_name" : "California",
               "short_name" : "CA",
               "types" : [ "administrative_area_level_1", "political" ]
            },
            {
               "long_name" : "United States",
               "short_name" : "US",
               "types" : [ "country", "political" ]
            },
            {
               "long_name" : "94043",
               "short_name" : "94043",
               "types" : [ "postal_code" ]
            }
         ],
         "formatted_address" : "1600 Amphitheatre Pkwy, Mountain View, CA 94043, USA",
         "geometry" : {
            "location" : {
               "lat" : 37.42291810,
               "lng" : -122.08542120
            },
            "location_type" : "ROOFTOP",
            "viewport" : {
               "northeast" : {
                  "lat" : 37.42426708029149,
                  "lng" : -122.0840722197085
               },
               "southwest" : {
                  "lat" : 37.42156911970850,
                  "lng" : -122.0867701802915
               }
            }
         },
         "types" : [ "street_address" ]
      }
   ],
   "status" : "OK"
}

これにより、ユーザーが入力したアドレスを使用してHTTPリクエストをリバースジオコーディングAPIに送信し、その後JSONオブジェクトを解析して必要なデータを見つけるだけです。

以前の投稿では JSONオブジェクトをURLから解析できる について説明しています。

お役に立てれば。

16
Demitrian

以下の方法を使用できます。

        Geocoder coder = new Geocoder(this);
    try {
        ArrayList<Address> adresses = (ArrayList<Address>) coder.getFromLocationName("Your Address", 50);
        for(Address add : adresses){
            if (statement) {//Controls to ensure it is right address such as country etc.
                double longitude = add.getLongitude();
                double latitude = add.getLatitude();
            }
        }
    } catch (IOException e) {
        e.printStackTrace();
    }
9
/**
 * @method getLocationFromAddress
 * @param strAddress Address/Location String
 * @desc Get searched location points from address and plot/update on map.
 */
public void getLocationFromAddress(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) {
            return;
        }

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

        //Put marker on map on that LatLng
        Marker srchMarker = mMap.addMarker(new MarkerOptions().position(latLng).title("Destination").icon(BitmapDescriptorFactory.fromResource(R.drawable.bb)));

        //Animate and Zoon on that map location
        mMap.moveCamera(CameraUpdateFactory.newLatLng(latLng));
        mMap.animateCamera(CameraUpdateFactory.zoomTo(15));

    } catch (IOException e)
    {
        e.printStackTrace();
    }
}
2
Rahul Raina

必要なものは http://developer.Android.com/reference/Android/location/Geocoder.html です。

あなたはそれをそのように使うことができます:

List<Address> result = new Geocoder(context).getFromLocationName(locationName, maxResults);

Addressのリストが表示され、これらのアドレスでgetLatitudeおよびgetLongitudeを呼び出すことができます。

0
Brtle