Можно ли отфильтровать Google Place Picker

Можно ли отфильтровать местоположения, отображаемые в Google Placepicker, скажем, только в супермаркетах? В противном случае, как мне лучше всего создать такое представление?

mGoogleApiClient = new GoogleApiClient
            .Builder(this)
            .addApi(Places.GEO_DATA_API)
            .addApi(Places.PLACE_DETECTION_API)
            .addConnectionCallbacks(this)
            .addOnConnectionFailedListener(this)
            .build();

 int PLACE_PICKER_REQUEST = 1;
        PlacePicker.IntentBuilder builder = new PlacePicker.IntentBuilder();
    try {
        Context context = getApplicationContext();
        startActivityForResult(builder.build(context), PLACE_PICKER_REQUEST);
    }
    catch (Exception e) {

    }

Ответы на вопрос(1)

Ваш ответ на вопрос