GoogleオートコンプリートプレースAPIを使用してアプリで場所を検索していますが、検索した場所の緯度と経度を取得したいです。 AndroidのGoogleによるオートコンプリートプレイスAPIによって返された結果から緯度と経度を取得する方法は?
Androidは私のために働いたためにGoogle Places APIを使用する次のコードスニペット
Places.GeoDataApi.getPlaceById(mGoogleApiClient, placeId)
.setResultCallback(new ResultCallback<PlaceBuffer>() {
@Override
public void onResult(PlaceBuffer places) {
if (places.getStatus().isSuccess()) {
final Place myPlace = places.get(0);
LatLng queriedLocation = myPlace.getLatLng();
Log.v("Latitude is", "" + queriedLocation.latitude);
Log.v("Longitude is", "" + queriedLocation.longitude);
}
places.release();
}
});
Android向けGoogle Places API にアクセスして、場所からデータを取得するメソッドの完全なリストをご覧ください
Google Place Details が答えです。
取得したplace_id
から、プレイス詳細にhttps://maps.googleapis.com/maps/api/place/details/json?placeid={placeid}&key={key}
のようなクエリを実行すると、result.geometry.location
JSONからlat
およびlng
を取得できます。
Place-autocomplete応答で返される各場所には、説明されているように、IDと参照文字列があります here 。
いずれか(参照は推奨されないためIDが望ましい)を使用して、Places APIにその場所に関する完全な情報(lat/lngを含む)を照会します。 https://developers.google.com/places/documentation/details#PlaceDetailsRequests
Shyamのコメントについて-ジオコーディングは、オートコンプリートの応答で完全な住所を取得した場合にのみ機能しますが、必ずしもそうとは限りません。また、オートコンプリートレスポンスで取得する場所の説明は一意ではないため、ジオコーディングは可能な結果のリストを提供します。ニーズによっては、ジオコーディングで十分な場合があります。
Ref:- https://developers.google.com/places/Android/place-details#get-place 上記のリンクは、latとlongを持つプレースオブジェクトを提供します。プレースオブジェクトは、プレースオートコンプリートから取得したプレースIDから取得されます。
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == Constant.REQUEST_LOCATION_CODE) {
Place place = PlaceAutocomplete.getPlace(this, data);
if (place != null) {
LatLng latLng = place.getLatLng();
mStringLatitude = String.valueOf(latLng.latitude);
mStringLongitude = String.valueOf(latLng.longitude);
EditTextAddress.setText(place.getAddress());
}
}
}
上記のコードを使用すると、LatLngとStringアドレスを取得できます。必要に応じてLatLngを使用します。
ジオコーディングは非常に間接的なソリューションであり、2番目のレスポンダーが言ったように、「Apple Store」を行うと完全な住所を返さない場合があります。代わりに:
Place_IDには、必要なものがすべて含まれています。 Places APIからplace_idを取得する方法を知っていることを前提としています(そうでない場合は完全な例があります)。
次に、このドキュメントに続くplace_idを使用して、場所の詳細(緯度と経度を含むジオメトリセクション)の2番目のリクエストを取得します。 https://developers.google.com/places/documentation/details?utm_source=welovemapsdevelopers&utm_campaign= mdr-devdocs
place.Field.LAT_LNGを提供して、場所の緯度と経度を取得します。
autocompleteFragment.setPlaceFields(Arrays.asList(Place.Field.ID,
Place.Field.NAME,Place.Field.LAT_LNG));
その後、LatLngを取得します
LatLng destinationLatLng = place.getLatLng();
トーストを通して見ることができます
destlat = destinationLatLng.latitude;
destLon = destinationLatLng.longitude;
Toast.makeText(getApplicationContext(), "" + destlat + ',' + destLon, Toast.LENGTH_LONG).show();
このスニペットにより、識別子に従って場所の緯度と経度を取得し、オートコンプリートに戻すことができます
public class PlacesDetails {
private static final String PLACES_API_BASE = "https://maps.googleapis.com/maps/api/place";
private static final String TYPE_AUTOCOMPLETE = "/autocomplete";
private static final String TYPE_DETAIL = "/details";
private static final String OUT_JSON = "/json";
//private static final String API_KEY = "------------ make your specific key ------------; // cle pour le serveur
public PlacesDetails() {
// TODO Auto-generated constructor stub
}
public ArrayList<Double> placeDetail(String input) {
ArrayList<Double> resultList = null;
HttpURLConnection conn = null;
StringBuilder jsonResults = new StringBuilder();
try {
StringBuilder sb = new StringBuilder(PLACES_API_BASE + TYPE_DETAIL + OUT_JSON);
sb.append("?placeid=" + URLEncoder.encode(input, "utf8"));
sb.append("&key=" + API_KEY);
URL url = new URL(sb.toString());
//Log.e("url", url.toString());
System.out.println("URL: "+url);
System.out.println("******************************* connexion au serveur *****************************************");
//Log.e("nous sommes entrai de test la connexion au serveur", "test to connect to the api");
conn = (HttpURLConnection) url.openConnection();
InputStreamReader in = new InputStreamReader(conn.getInputStream());
// Load the results into a StringBuilder
int read;
char[] buff = new char[1024];
while ((read = in.read(buff)) != -1) {
jsonResults.append(buff, 0, read);
}
System.out.println("le json result"+jsonResults.toString());
} catch (MalformedURLException e) {
//Log.e(LOG_TAG, "Error processing Places API URL", e);
return resultList;
} catch (IOException e) {
//Log.e(LOG_TAG, "Error connecting to Places API", e);
return resultList;
} finally {
if (conn != null) {
conn.disconnect();
}
System.out.println("******************************* fin de la connexion*************************************************");
}
try {
// Create a JSON object hierarchy from the results
//Log.e("creation du fichier Json", "creation du fichier Json");
System.out.println("fabrication du Json Objet");
JSONObject jsonObj = new JSONObject(jsonResults.toString());
//JSONArray predsJsonArray = jsonObj.getJSONArray("html_attributions");
JSONObject result = jsonObj.getJSONObject("result").getJSONObject("geometry").getJSONObject("location");
System.out.println("la chaine Json "+result);
Double longitude = result.getDouble("lng");
Double latitude = result.getDouble("lat");
System.out.println("longitude et latitude "+ longitude+latitude);
resultList = new ArrayList<Double>(result.length());
resultList.add(result.getDouble("lng"));
resultList.add(result.getDouble("lat"));
System.out.println("les latitude dans le table"+resultList);
} catch (JSONException e) {
///Log.e(LOG_TAG, "Cannot process JSON results", e);
}
return resultList;
}
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
PlacesDetails pl = new PlacesDetails();
ArrayList<Double> list = new ArrayList<Double>();
list = pl.placeDetail("ChIJbf7h4osSYRARi8SBR0Sh2pI");
System.out.println("resultat de la requette"+list.toString());
}
}
オートコンプリートドキュメントの最新バージョンに基づく
オプション1:AutocompleteSupportFragmentを埋め込む
AutocompleteSupportFragment autocompleteFragment = (AutocompleteSupportFragment)
getSupportFragmentManager().findFragmentById(R.id.autocomplete_fragment);
autocompleteFragment
.setPlaceFields(Arrays.asList(Place.Field.ID,
Place.Field.NAME,Place.Field.LAT_LNG,Place.Field.ADDRESS));
オプション2:インテントを使用してオートコンプリートアクティビティを起動する
List<Place.Field> fields = Arrays.asList(Place.Field.ID, Place.Field.NAME,Place.Field.LAT_LNG,Place.Field.ADDRESS);
// Start the autocomplete intent.
Intent intent = new Autocomplete.IntentBuilder(
AutocompleteActivityMode.FULLSCREEN, fields)
.build(this);
startActivityForResult(intent, AUTOCOMPLETE_REQUEST_CODE);
どちらのフィールドに興味がある場合でも、上記のように言及する必要があります。
次のような結果が得られます。
onPlaceSelected:
{
"a":"#90, 1st Floor, Balaji Complex, Kuvempu Main Road, Kempapura, Hebbal
Kempapura, Bengaluru, Karnataka 560024, India",
"b":[],
"c":"ChIJzxEsY4QXrjsRQiF5LWRnVoc",
"d":{"latitude":13.0498176,"longitude":77.600347},
"e":"CRAWLINK Networks Pvt. Ltd."
}
注:表示される結果は、Placeオブジェクトをjsonに解析することによるものです
関数の下にこれらの行を追加します
autocomplete.addListener('place_changed', function() {});
var place = autocomplete.getPlace();
autocomplete.setFields(['place_id', 'geometry', 'name', 'formatted_address']);
var lng = place.geometry.location.lng();
var lat = place.geometry.location.lat();
var latlng = {lat , lng};
console.log(latlng);