2013-04-21 50 views
0

讀谷歌地圖的文檔,地理編碼服務,我看到,以限制搜索結果,例如在國內,我要進入自動完成結果限制

http://maps.googleapis.com/maps/api/js?key=MY_API_KEY&components=country:IT&sensor=true 

但它不工作! 如果我在「內經」返回結果一樣鍵入:

results

我忘記做一些事情?

回答

0

試試這個

var input = document.getElementById('searchTextField'); 
var options = { 
types: ['(cities)'], 
componentRestrictions: {country: 'fr'} 
}; 

autocomplete = new google.maps.places.Autocomplete(input, options); 
我不使用的地方API
+0

,但地理編碼服務。 – Lughino 2013-04-24 10:36:27