0

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

4

1 回答 1

2

您可以尝试以下方法。

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.

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

于 2016-10-24T08:05:35.730 回答