我希望能够通过使用google places api自动填充一些地方。我只想包括某个地区的某些地方。 Googles API文档使用函数setBoundsBias
来描述此功能,但我似乎无法使其正常工作,因为它仍然返回指定区域之外的结果。
try {
Intent intent = new PlaceAutocomplete.IntentBuilder(PlaceAutocomplete.MODE_OVERLAY)
.setBoundsBias(new LatLngBounds(
new LatLng(16.371163, 21.051073),
new LatLng(16.725743, 21.424006)))
.build(getActivity());
startActivityForResult(intent, requestCode);
} catch (GooglePlayServicesRepairableException | GooglePlayServicesNotAvailableException e) {
e.printStackTrace();
}
答案 0 :(得分:0)
setBoundsBias
应该从区域外返回结果。
这只是一种偏见。
如果要从边界内独占返回结果,则必须使用AutocompleteFilter
。
不幸的是,目前按地区划分的唯一过滤级别是按国家/地区。