从Google地方信息结果中获取经度和纬度

时间:2018-01-17 23:45:39

标签: android google-maps google-maps-api-3 xamarin.android google-places-api

我正在使用Xamarin编写一个Android应用程序,该应用程序使用Xamarin.GooglePlayServices.Maps Nuget Package。我需要使用地点的名称到达地图上的特定位置。为此,我加载了Xamarin.GooglePlayServices.Places。我可以将部分地名传递给GetAutocompletePredictionsAsync,如下所示:

cosine

我得到的结果基本上是IAutocompletePrediction的集合。此对象中与location有关的唯一项是PlaceId。我无法在Google Maps API上找到任何方法来使用它。我试着通过调用GetPlaceById来获取更多信息:

var autocompletePredictions = await 
PlacesClass.GeoDataApi.GetAutocompletePredictionsAsync(
                Adapter.googleApiClient, constraint.ToString(), 
                Adapter.bounds, Adapter.autoCompleteFilter);

但我在该结果中根本没有看到任何位置信息。有谁知道如何从Google Places API获取LatLng信息?

更新:我使用了多个回复中的信息来获得答案:

var place = PlacesClass.GeoDataApi.GetPlaceById(googleApiClient, item.PlaceId);

奇怪的是,当我列举了foreach中的地方时,这个地方是IPlace类型。然而

            Task.Run(async () =>
            {
                PlaceBuffer places = await PlacesClass.GeoDataApi.GetPlaceByIdAsync(googleApiClient, item.PlaceId);

                if (places.Status.IsSuccess)
                {

                    foreach (var place in places)
                        try
                        {
                            //IPlace place = (IPlace)places.Get(0);

                            MarkOnMap(place.NameFormatted.ToString(), place.AddressFormatted.ToString(), place.LatLng);
                            UpdateCameraPosition(place.LatLng);
                        }
                        catch (Exception ex)
                        {
                            Log.Error("WhatNow", ex.ToString());
                        }
                }

                places.Dispose();
            });

没有投到IPlace。谁知道?我只希望Dispose()按照文档中的建议释放缓冲区。 Xamarin总是与Java略有不同。

感谢所有帮助过的人。

1 个答案:

答案 0 :(得分:2)

我用过这个,你可以尝试这个代码。 我正在使用autoCompleteTextView。

dropLocationEt.setOnItemClickListener(new AdapterView.OnItemClickListener() {
            @Override
            public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
                final PlaceAutoCompleteAdapter.PlaceAutocomplete item = mAdapter.getItem(position);
                final String placeId = String.valueOf(item.placeId);
                Log.i(TAG, "Autocomplete item selected: " + item.description);
            /*
             Issue a request to the Places Geo Data API to retrieve a Place object with additional
              details about the place.
              */
                PendingResult<PlaceBuffer> placeResult = Places.GeoDataApi
                        .getPlaceById(googleApiClient, placeId);
                placeResult.setResultCallback(new ResultCallback<PlaceBuffer>() {
                    @Override
                    public void onResult(PlaceBuffer places) {
                        if (!places.getStatus().isSuccess()) {
                            // Request did not complete successfully
                            Log.e(TAG, "Place query did not complete. Error: " + places.getStatus().toString());
                            places.release();
                            return;
                        }
                        // Get the Place object from the buffer.
                        final Place place = places.get(0);
                        latLngDrop = place.getLatLng();
                        StaticMethods.hideKeyboard(getActivity());
                        dropLocationEt.setSelection(0);

                    }
                });
            }
        });

从latlngDrop中,您可以检索lat和lng,例如:latlngDrop.getLatitude,latlngDrop.getLongitude