如何限制谷歌地图自动完成



问题 1( 我正在尝试通过下面的自动完成代码搜索邮政编码(英国(

例如,如果我搜索NE237AP-这就是我得到的安尼茨福德大道,达德利,克拉姆灵顿NE23 7AP,英国

但是如果我搜索街道名称,则省略邮政编码安尼茨福德大道- 我得到 安尼茨福德大道,安尼茨福德,克拉姆灵顿,英国

为什么。

问题2(我怎样才能将上面的邮政编码结果使用到另一个文本框中。

问题3(有没有办法限制到英国 - 看到许多代码片段,但似乎没有一个有效,下面的代码。

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css" />


<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.js"></script>

<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=key&amp;libraries=places"></script>
<script>
google.maps.event.addDomListener(window, 'load', initialize);
function initialize() {
var input = document.getElementById('autocomplete_search');
var autocomplete = new google.maps.places.Autocomplete(input);
autocomplete.addListener('place_changed', function () {
var place = autocomplete.getPlace();
// place variable will have all the information you are looking for.
$('#lat').val(place.geometry['location'].lat());
$('#long').val(place.geometry['location'].lng());
});
}
</script>

<title>Google Places Autocomplete InputBox Example Without Showing Map - Tutsmake.com</title>
<style>
.container{
padding: 10%;
text-align: center;
} 
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-12"><h2>Google Places Autocomplete InputBox Example Without Showing Map</h2></div>
<div class="col-12">
<div id="custom-search-input">
<div class="input-group">
<input id="autocomplete_search" name="autocomplete_search" type="text" class="form-control" placeholder="Search" />
<input type="hidden" name="lat">
<input type="hidden" name="long">
</div>
</div>
</div>
</div>
</div>
</body>
</html>
  1. 您没有获得邮政编码详细信息,因为地址Annitsford Drive,Annitsford,Cramlington,UK本身实际上被多个邮政编码覆盖,例如NE23 7AP,NE23 7AX等。

  2. 您可以参考此处的示例代码,该代码提取数据并将其填充到地址表单中。请注意,您可能需要更改上述示例中的组件,以满足相应区域中的地址格式。

  3. 根据本文档:

Use the componentRestrictions option to restrict the autocomplete search to a particular country.

在您的情况下,在初始化函数中,您可以使用以下行将自动完成预测限制为英国:

var input = document.getElementById('autocomplete_search');
var options = {
componentRestrictions: {country: 'gb'}
};
var autocomplete = new google.maps.places.Autocomplete(input, options);

相关内容

  • 没有找到相关文章

最新更新