Unable to filter specific city restrict. Please, anyone give suggestions as wrote below code
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);