我可以将Android的PlacePicker控件限制为特定国家/地区吗?

时间:2017-06-21 10:18:20

标签: android google-maps-api-3 google-maps-markers gmsplacepicker

我正在使用Android提供的最新Place Picker控件。它真的很容易使用。

现在,问题是:

  1. 我可以将搜索区域限制为仅限于印度吗?

  2. 我可以更改PlacePicker控件中的默认标记图标吗?

  3. 注意:我没有使用任何MapView或Fragment来显示任何地图。我正在使用PlacePicker而不使用GoogleMap。

1 个答案:

答案 0 :(得分:0)

   public void onActivityResult(int requestCode, int resultCode, Intent data) {
    if (requestCode == PLACE_PICKER_REQUEST) {
        if (resultCode == RESULT_OK) {
            Place place = PlacePicker.getPlace(mActivity, data);
            Log.d(TAG, "onActivityResult: " + place.getAddress());
            if (place.getAddress() != null) {
                // ask for geolocation data
                Geocoder gcd = new Geocoder(mActivity, Locale.getDefault());

                try {
                    addresses = gcd.getFromLocation(place.getLatLng().latitude, place.getLatLng().longitude, 1);
                } catch (IOException e) {
                    e.printStackTrace();
                }


                if (addresses.size() > 0) {
                    if (addresses.get(0).getCountryCode().equalsIgnoreCase(getString(R.string.india))) {
                        //write the code here
                    } else {
                        Toast.makeText(mActivity, "Invalid places", Toast.LENGTH_SHORT).show();
                    }
                }
            }
        }
    }
}