我正在开发andorid google places api自动完成,一切正常但是当我设置自定义LatLongBounds将搜索限制为GoogleApiClient对象的特定区域时,返回的结果不在该范围内。我不知道我做错了什么。这就是我在做的事。
LatLngBounds bounds = new LatLngBounds(new LatLng(24.85764939832254,67.0641630948748), new LatLng(24.866642601677466,67.07407490512522));
LatLng northeast = bounds.northeast;
LatLng southwest = bounds.southwest;
android.util.Log.e("North-East", northeast.toString());
android.util.Log.e("South-West", southwest.toString());
mAdapter = new PlaceAutocompleteAdapter(getActivity(), android.R.layout.simple_list_item_1, GoogleApiClientHelper.get(getActivity()).getGoogleApiClient(), bounds, null);
mAutocompleteView.setAdapter(mAdapter);
答案 0 :(得分:0)
我有同样的问题。我认为Google Place for android并不完整。 Api por web工作正常,我找到了几个网站,他们说你可以使用这个api wor web为代码做一些“修复”。我认为这不是正确的方法,但如果它有效,它就有效。
Google Places API request denied for Android autocomplete, even with the right api key