Android Google商家信息自动填充功能无法正常运行

时间:2016-01-08 21:13:02

标签: android google-play-services google-places-api

我希望能够通过使用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();
        }

1 个答案:

答案 0 :(得分:0)

setBoundsBias应该从区域外返回结果。 这只是一种偏见。 如果要从边界内独占返回结果,则必须使用AutocompleteFilter。 不幸的是,目前按地区划分的唯一过滤级别是按国家/地区。