微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

jquery – 将自动填充列表中的国家/地区的Google地图限制为“INDIA,USA和UK”

代码无效.请告诉我确切的解决方
<script src="maps.googleapis.com/maps/api/…; type="text/javascript"></script>
<script type="text/javascript">
   function initialize() {
      var input = document.getElementById('searchTextField');
      /* restrict to multiple cities? */
      var options = {
          types: ['(cities)'],componentRestrictions: {country: ["usa","uk"]}
      };
      var autocomplete = new google.maps.places.Autocomplete(input,options); 
   }
   google.maps.event.addDomListener(window,'load',initialize);
</script>

UPDATE

2017年1月,Maps JavaScript API版本3.27中引入了多个国家/地区过滤自动完成功能

You can Now restrict Autocomplete predictions to only surface from multiple countries. You can do this by specifying up to 5 countries in the componentRestrictions field of the AutocompleteOptions.

https://developers.google.com/maps/documentation/javascript/releases#327

解决方法

首先,您无法从多个国家/地区进行过滤.这是一个已知问题 reported here.

然后,对于您的代码,您必须使用两个字符的字符串作为国家/地区代码

componentRestrictions can be used to restrict results to specific
groups. Currently,you can use componentRestrictions to filter by
country. The country must be passed as as a two character,ISO 3166-1
Alpha-2 compatible country code. 07001.

这是一个国家working sample我jsfiddled(取自Google samples list).

原文地址:https://www.jb51.cc/jquery/181319.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐