I want the Googles auto-complete offer to only display a list of places and locations. I basically tried to get the type of housing to work, but no suggestions came up.
When I remove ac_options from the autoComplete variable, everything works fine, but of course, none of the sentences are narrowed by a specific type.
var ac_options = { types: ['lodging'] }; var input = document.getElementById(this.options.autoCompleteInputId); var autocomplete = new google.maps.places.Autocomplete(input, ac_options);
source share