如何在Google地点选择器中隐藏附近的地方?

时间:2018-10-17 06:55:35

标签: java android

我只希望在Google地点选择器中进行位置搜索和标记,以便在Google地点选择器中隐藏附近的地点。

 PlacePicker.IntentBuilder builder = new PlacePicker.IntentBuilder();
                try {
                    startActivityForResult(builder.build(this), PLACE_PICKER_REQUEST);
                } catch (GooglePlayServicesRepairableException e) {
                    e.printStackTrace();
                } catch (GooglePlayServicesNotAvailableException e) {
                    e.printStackTrace();
                }

onActivityResult

protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        if (requestCode == PLACE_PICKER_REQUEST) {
            if (resultCode == RESULT_OK) {
                Place place = PlacePicker.getPlace(data, this);
                str_address = (String) place.getAddress();
                LatLng latLng = place.getLatLng();
                latitude = latLng.latitude;
                longitude = latLng.longitude;
                et_address.setText(str_address);

            }
        }
    }

上面的代码很好用。我可以从地点选择器中选择所需的位置。

但是我想在放置位置选择器时隐藏其他附近的位置。

0 个答案:

没有答案