I am attempting to limit the display of suggestions for the Google Place Autocomplete API.
Since the Google API charges a API Call per character entered in the field, I would like to restrict the suggestions to only be shown after X amount of characters have been entered.
My initialization of the autocomplete is as standard as it gets.
var input = document.getElementbyId('Searchbox');
var autocomplete = new google.maps.places.autocomplete(input)
Any tips or suggestions would be greatly appreciated
Thanks