可能重复:
Autocomplete Google Map V3 Places impossible to customize?
Iam很难在Google(http://code.google.com/intl/no-NO/apis/maps/documentation/javascript/examples/places-autocomplete.html)Iam上使用自动填充位置检索挪威地点,并使用完全相同的代码。
我试图改变bindTo,但这似乎并没有让我任何地方。是否不能仅限于显示挪威的位置?最好只在挪威的罗加兰内。我可以通过普通搜索完成此操作,只需将Rogaland,挪威添加到搜索词的末尾,但是在您键入时处理XML以进行过滤需要很长时间。
答案 0 :(得分:1)
通常,您必须更改以下行:
autocomplete = new google.maps.places.Autocomplete(input);
进入:
var defaultBounds = new google.maps.LatLngBounds(
new google.maps.LatLng(V, W),
new google.maps.LatLng(X, Y));
var options = {
bounds: defaultBounds,
types: ['establishment']
};
autocomplete = new google.maps.places.Autocomplete(input, options);
其中V,W,X和Y是纬度和经度挪威值。