下面是google给出的getQueryPredictions例子
service.getQueryPredictions({input: 'pizza near'}, callback);
有没有办法限制特定国家/城市/州的结果?
其他功能/组件有能力做到这一点
var input = document.getElementById('searchTextField');
var options = { types: ['(cities)'], componentRestrictions: {country: 'fr'}};
autocomplete = new google.maps.places.Autocomplete(input, options);