我想在我的网站上有一个输入字段,其中包含某个国家/地区内的地点的自动填充功能。例如,在下面的代码中,我想仅在“荷兰”国家/地区内作为自动填充中的建议。
在下面的代码中,我得到了所有国家/地区的地方建议,但没有为某个国家/地区指定。
<!DOCTYPE html>
<html>
<head>
<title>Google Maps JavaScript API v3 Example: Places Autocomplete</title>
<script src="http://maps.googleapis.com/maps/api/js?sensor=false&libraries=places"
type="text/javascript"></script>
<style type="text/css">
body {
font-family: sans-serif;
font-size: 14px;
}
#map_canvas {
height: 400px;
width: 600px;
margin-top: 0.6em;
}
</style>
<script type="text/javascript">
function initialize() {
var input = document.getElementById('searchTextField');
var autocomplete = new google.maps.places.Autocomplete(input, {country: 'NL'});
autocomplete.bindTo('bounds', map);
var infowindow = new google.maps.InfoWindow();
var marker = new google.maps.Marker({
map: map
});
google.maps.event.addListener(autocomplete, 'place_changed', function() {
infowindow.close();
var place = autocomplete.getPlace();
if (place.geometry.viewport) {
map.fitBounds(place.geometry.viewport);
} else {
map.setCenter(place.geometry.location);
map.setZoom(17); // Why 17? Because it looks good.
}
});
setupClickListener('changetype-all', []);
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</head>
<body>
<div>
<input id="searchTextField" type="text" size="50">
<label for="changetype-all"></label>
</div>
</body>
</html>
答案 0 :(得分:2)
根据我的知识,你可以设置一个偏差(你已经拥有)但没有用其他代码实际检查每个自动完成结果,你不能将自动完成列表限制在某个国家或地区。
以下是有关Google自动填充功能的更多信息:http://code.google.com/apis/maps/documentation/places/autocomplete.html#place_autocomplete_requests
啊,如果您想使用geo-autocomplete插件,那么请看一下这个例子:
视图-出处:http://geo-autocomplete.googlecode.com/svn/trunk/demo/ui.demo.html
这是他们的例子:
$('#demo3_location').geo_autocomplete({
geocoder_region: 'Africa',
geocoder_types: 'country',
mapheight: 100, mapwidth: 200, maptype: 'hybrid'
});
答案 1 :(得分:2)
无需更改任何内容 - 您只需创建一个全局变量选项而不是
{country: 'NL'}
把options
放在那里。
现在在使用前声明Option。
options = {types: ['(cities)'],componentRestrictions: { country: 'US' }};
现在您的行将是:
var autocomplete = new google.maps.places.Autocomplete(input, options);
希望为你工作 - ! 谢谢, 卡维(印度)