以下是google给出的getQueryPredictions示例
service.getQueryPredictions({input: 'pizza near'}, callback);
Run Code Online (Sandbox Code Playgroud)
有没有办法限制特定国家/城市/州的结果?
其他功能/组件具有执行此操作的能力
var input = document.getElementById('searchTextField');
var options = { types: ['(cities)'], componentRestrictions: {country: 'fr'}};
autocomplete = new google.maps.places.Autocomplete(input, options);
Run Code Online (Sandbox Code Playgroud)