gpt4 book ai didi

android - 从 autocomplete place api 返回的 place_id 获取 Lat Lang

转载 作者:IT王子 更新时间:2023-10-29 00:03:25 27 4
gpt4 key购买 nike

我正在使用 google 自动完成地点 api 在我的应用程序中搜索地点,现在我想获取我搜索过的地点的纬度和经度。如何从android中的google autocomplete place api返回的结果中获取经纬度?

最佳答案

以下使用 Google Places API for android 的代码 fragment 对我有用

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

访问 Google Places API for Android从一个地方检索数据的方法的完整列表

关于android - 从 autocomplete place api 返回的 place_id 获取 Lat Lang,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25928948/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com