2016-09-20 92 views
0

我想爲這個問題的解決方案,請建議做什麼,我想只從谷歌的PlaceAutocomplete特定國家的搜索結果,我如何設置過濾器,以便它只顯示該國家的結果只有如果我想要的搜索結果如果只有印度可以做到這一點? PlaceAutocomplete可能嗎?如何從PlaceAutocomplete android獲取特定國家的搜索結果?

代碼:

try { 
     Intent intent = new PlaceAutocomplete.IntentBuilder(PlaceAutocomplete.MODE_OVERLAY).build(activity); 
     startActivityForResult(intent, 1); 
    } catch (GooglePlayServicesRepairableException e) { 
     e.printStackTrace(); 
    } catch (GooglePlayServicesNotAvailableException e) { 
     e.printStackTrace(); 
    } 

as in screenshot it shows result of world wide, i only want of a specific country

如屏幕截圖它顯示了世界的廣泛的結果,我只想要一個特定國家

+0

http://stackoverflow.com/questions/40526961/how-to-invoke-setcountry-to-autocompletefilter-google-place-api –

回答

1

,你可以使用的LatLngBounds構造方法。這將有助於限制對矩形區域的搜索(但這不一定限制搜索一個國家,而是限制搜索該矩形區域中的所有國家)。或者你可以使用谷歌的地方Web服務API,如圖here

詳細的說明請參考此答案here

+0

它有幫助。謝謝 –

相關問題