Only list the cities name Geocomplete.js or Google Location Autocomplete

帅比萌擦擦* 提交于 2020-01-12 08:29:10

问题


I want to only show the cities name using Geocomplete.js. I have restrict the search to only show the cities. But it is still showing the Country name "United State" at the end, i want to get rid from it.

Any Suggestions please

Thanks


回答1:


Glad that I finally found solution for geocomplete.js! Hope it will be useful to someone.

Solution: Send options with restrictions required to geocomplete function:

     var options = {
              types: ['(cities)'],
              componentRestrictions: {}
          };

     $("#source").geocomplete(options);

You can also send country-based restrictions. with Options like

var options = {
          types: ['(cities)'],
          componentRestrictions: {country: ["usa"]}
      };

Google Location Autocomplete using google places api solutions was straightforward and here is the answer



来源:https://stackoverflow.com/questions/24781802/only-list-the-cities-name-geocomplete-js-or-google-location-autocomplete

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!