显示谷歌地图附近的地方搜索android

时间:2017-01-30 13:14:47

标签: android google-maps

I don't want have different countries search suggestions in my app(Image)

I want to have correct or nearest suggestions in google map app(Image)

我已使用此代码测试

autocompleteFragment = (PlaceAutocompleteFragment)
                getFragmentManager().findFragmentById(R.id.place_autocomplete_fragment);
AutocompleteFilter typeFilter = new AutocompleteFilter.Builder()
                .setTypeFilter(AutocompleteFilter.TYPE_FILTER_REGIONS)
                .build();  

autocompleteFragment.setFilter(typeFilter);

我想在搜索栏中输入时显示附近的地方。我的问题是当在搜索栏中输入一个字符时,该字符与其他国家/地区相关,作为建议,我希望它是最接近的一个。换句话说,搜索与Android谷歌地图应用程序非常相似。

2 个答案:

答案 0 :(得分:0)

AutocompleteFilter filter = new AutocompleteFilter.Builder()
            .setTypeFilter(AutocompleteFilter.TYPE_FILTER_CITIES)
            .build();

答案 1 :(得分:0)

AutoCompleteSearch组件,不显示附近的地方。我是通过使用谷歌地图网络服务API实现的。

网络-API:  maps.googleapis.com/maps/api/place/nearbysearch (GET)
参数:key(您的API密钥),
location(lat +"," + lang),半径(5000),
传感器(true)
注意:我启用了Google Places API Web服务。