在 google PlacePicker 中显示特定区域

Showing particular area in google PlacePicker

我正在开发一个 android 应用程序,它需要用户到 select his/her 位置。我正在使用 Google 的 PlacePikcer API 来这样做。它工作正常,但我想在单击 PlacePicker 按钮时显示特定区域。例如,当我启动 placepicker 意图时,它应该显示特定区域或半径的地图以使搜索更加具体。 我搜索了很多但找不到方法。请帮忙。

您可以尝试以下方法。

LatLng bottomLeft = new LatLng(**bottom left latitude** , **bottom left longitude**);
LatLng topRight = new LatLng(**top right latitude** , **top right longitude**);

LatLngBounds bounds = new LatLngBounds(bottomLeft ,topRight);


PlacePicker.IntentBuilder intentBuilder = new PlacePicker.IntentBuilder();
intentBuilder.setLatLngBounds(bound);

// now use intentBuilder to build intent.

左下纬度左下经度标记您要显示的区域的左下角并右上纬度右上经度标记了该区域的右上角。