gpt4 book ai didi

android - 我可以在 PlacePicker.IntentBuilder 中设置 LatLngObject 以查看 map 中的那个地方吗?

转载 作者:行者123 更新时间:2023-11-30 00:23:32 26 4
gpt4 key购买 nike

我的代码是这样的。它工作正常。
我如何在 PlacePicker.IntentBuilder 中设置 LatitudeLongitude 以便我可以在 map 中看到位置

   try {
PlacePicker.IntentBuilder builder = new PlacePicker.IntentBuilder();
Intent intent = builder.build(MainActivity.this);
startActivityForResult(intent, PLACE_PICKER_REQUEST_CODE);
} catch (GooglePlayServicesRepairableException
| GooglePlayServicesNotAvailableException e) {
e.printStackTrace();
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == PLACE_PICKER_REQUEST_CODE) {
final Place place = PlacePicker.getPlace(this, data);
final CharSequence name = place.getName();
final CharSequence address = place.getAddress();
Khet_Location = address.toString();
Place_Name = name + "," + address;
String attributions = (String) place.getAttributions();
if (attributions == null) {
attributions = "";
}
current_location_id.setVisibility(View.VISIBLE);
current_location_id.setText(Place_Name);
Double latitude = place.getLatLng().latitude;
Double longitude = place.getLatLng().longitude;
Address_lat = String.valueOf(latitude);
Address_long = String.valueOf(longitude);
}else
super.onActivityResult(requestCode, resultCode, data);
}

请帮帮我。

最佳答案

你的意思是focus all place pickers,我不太明白你的问题...

但检查this...

setLatLngBounds(LatLngBounds 经纬度边界)

例子

for i to n{
array coords
add in LatLngBounds
}
placepicker.setLatLngBounds(latLngBounds)

关于android - 我可以在 PlacePicker.IntentBuilder 中设置 LatLngObject 以查看 map 中的那个地方吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45837010/

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