Can I restrict the search to a city\'s streets when using the Google Places Autocomplete?
Autocomplete
Set types to regions.
var input = document.getElementById( 'searchTextField' ); var options = { bounds: yourBounds, types: ['(regions)'] }; autocomplete = new google.maps.places.Autocomplete( input, options );
Hope it helps..