Is there a way to restrict the Google Places Autocomplete to search a city's streets?

前端 未结 4 819
天命终不由人
天命终不由人 2021-02-05 21:10

Can I restrict the search to a city\'s streets when using the Google Places Autocomplete?

4条回答
  •  Happy的楠姐
    2021-02-05 21:49

    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..

提交回复
热议问题