尽管places.getName()没有返回null,但places.getLatLng()返回null

Ary*_*oni 2 android location google-maps google-places-api

我一直在尝试从自动完成中单击某个位置后获取latlng,奇怪的是,places.getName()它工作正常,但place.getLatLng()返回null。我应该怎么做才能解决这个问题?我是Google Maps and Place API的新手!

protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        if (requestCode == AUTOCOMPLETE_REQUEST_CODE_FROM) {
            if (resultCode == RESULT_OK) {
                Place place = Autocomplete.getPlaceFromIntent(data);
                Log.i("shipadd", "Place: " + place.getName() + ", " + place.getId());
                from_edit_txt.setText(place.getName());
                origin=place.getLatLng();
                Log.e("origin_destarray",""+place.getLatLng());

            } else if (resultCode == AutocompleteActivity.RESULT_ERROR) {
                // TODO: Handle the error.
                Status status = Autocomplete.getStatusFromIntent(data);
                Log.i("shipadd", status.getStatusMessage());
            } else if (resultCode == RESULT_CANCELED) {
                // The user canceled the operation.
            }
        }
        else if (requestCode == AUTOCOMPLETE_REQUEST_CODE_TO) {
            if (resultCode == RESULT_OK) {
                Place place = Autocomplete.getPlaceFromIntent(data);
                Log.i("shipadd", "Place: " + place.getAddress() + ", " + place.getId());
                to_edit_txt.setText(place.getName());
Run Code Online (Sandbox Code Playgroud)

我希望以下代码返回我在自动完成活动中选择的位置的纬度和对数

Rak*_*ale 6

以前,可通过Google Play服务使用Android的Places SDK。 Android版Places SDK的Google Play服务版本已弃用,Google将于2019年7月29日将其关闭。

但是,用于Android的Places SDK的新版本作为静态客户端库分发。
新SDK客户端库的依赖项

implementation 'com.google.android.libraries.places:places:1.0.0'
Run Code Online (Sandbox Code Playgroud)

您可以使用以下两种方法之一在Android应用程序中添加Google地方信息自动填充功能:

 1) Either embed a AutocompleteSupportFragment
 OR
 2) Use an intent to launch the autocomplete activity. 
Run Code Online (Sandbox Code Playgroud)

我通过嵌入下面的AutocompleteSupportFragment创建了一个演示应用程序:

package com.places_api_demo;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.widget.TextView;
import java.util.Arrays;

import com.google.android.gms.common.api.Status;
import com.google.android.libraries.places.api.model.Place;
import com.google.android.libraries.places.api.net.PlacesClient;
import com.google.android.libraries.places.widget.AutocompleteSupportFragment;
import com.google.android.libraries.places.widget.listener.PlaceSelectionListener;
import com.google.android.libraries.places.api.Places;
import static com.google.android.libraries.places.api.model.Place.Field.LAT_LNG;


public class MainActivity extends AppCompatActivity {
String TAG = "placeautocomplete";
TextView txtView;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    txtView = findViewById(R.id.txtView);

    // Initialize Places.
    Places.initialize(getApplicationContext(), "REPLACE YOUR API KEY HERE");
    // Create a new Places client instance.
    PlacesClient placesClient = Places.createClient(this);

    // Initialize the AutocompleteSupportFragment.
    AutocompleteSupportFragment autocompleteFragment = (AutocompleteSupportFragment)
            getSupportFragmentManager().findFragmentById(R.id.autocomplete_fragment);

    // Specify the types of place data to return.
    autocompleteFragment.setPlaceFields(Arrays.asList(Place.Field.ID, Place.Field.NAME, Place.Field.LAT_LNG));

    // Set up a PlaceSelectionListener to handle the response.
    autocompleteFragment.setOnPlaceSelectedListener(new PlaceSelectionListener() {
        @Override
        public void onPlaceSelected(Place place) {
            // TODO: Get info about the selected place.
            txtView.setText(place.getName()+"\n"+place.getId()+"\n"+ place.getLatLng());
            Log.i(TAG, "Place: " + place.getName() + ", " +  place.getLatLng());
        }

        @Override
        public void onError(Status status) {
            // TODO: Handle the error.
            Log.i(TAG, "An error occurred: " + status);
        }
    });
}
}
Run Code Online (Sandbox Code Playgroud)

调试结果显示搜索位置的位置详细信息

指定要返回的位置数据的类型也很重要

autocompleteFragment.setPlaceFields(Arrays.asList(Place.Field.LAT_LNG, Place.Field.ID, Place.Field.NAME));
Run Code Online (Sandbox Code Playgroud)

有关“位置数据”字段的更多详细信息,请参阅此处

  • 谢谢我没有提到 Place.Field.LAT_LNG,非常感谢您的帮助!你是救命稻草 (5认同)