我正在使用Android提供的最新Place Picker控件。它真的很容易使用。
现在,问题是:
我可以将搜索区域限制为仅限于印度吗?
我可以更改PlacePicker控件中的默认标记图标吗?
注意:我没有使用任何MapView或Fragment来显示任何地图。我正在使用PlacePicker而不使用GoogleMap。
答案 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();
}
}
}
}
}
}