如何仅过滤特定城市区域的Google地方?

时间:2018-10-15 07:21:34

标签: android google-maps filter autocompletetextview

无法过滤特定的城市限制。请任何人按照下面的代码提供建议

private static final LatLngBounds BOUNDS_HYDERABAD = new LatLngBounds(
        new LatLng(17.3850,78.4867), new LatLng(17.3850,78.4867));
Intent intent = new PlaceAutocomplete.IntentBuilder(PlaceAutocomplete.MODE_OVERLAY)
                                .setFilter(autocompleteFilter)
                                .setBoundsBias(BOUNDS_HYDERABAD)
                                .build(MapsActivity.this);
                startActivityForResult(intent, PLACE_AUTOCOMPLETE_REQUEST_CODE);

1 个答案:

答案 0 :(得分:0)

您不能限制从Places API接收的数据。设置LatLngBound参数时,它只会优先处理给定LatLngBound中的位置,如果找不到给定查询,则会显示给定范围之外的位置中的位置。