limiting google maps autocomplete to UK address only

后端 未结 7 1904
暗喜
暗喜 2020-12-18 21:14

I\'ve been looking at the example on:

http://code.google.com/apis/maps/documentation/javascript/examples/places-autocomplete.html

and have decided to incor

相关标签:
7条回答
  • 2020-12-18 22:07

    Try this:

    var input = document.getElementById('searchTextField');
    var options = {
       types: ['(cities)'],
       componentRestrictions: {country: 'tr'}//Turkey only
    };
    var autocomplete = new google.maps.places.Autocomplete(input,options);
    
    0 讨论(0)
提交回复
热议问题