Below is the getQueryPredictions example given by google
service.getQueryPredictions({input: 'pizza near'}, callback);
Is there a way to restrict results for a specific country/city/state?
The other function/component has ability to do this
var input = document.getElementById('searchTextField');
var options = { types: ['(cities)'], componentRestrictions: {country: 'fr'}};
autocomplete = new google.maps.places.Autocomplete(input, options);