當前,我使用下面的代碼來獲取Google Places自動完成文本框,而不使用Google Maps.I需要將此地址組件提取到城市,州,郵政編碼,在place_changed事件 國家我使用這個代碼來獲取位置使用jquery提取地址到城市,州,國家,郵編
$(document).ready(function(){
var places = new google.maps.places.Autocomplete(document.getElementById('MainContent_txtpostcode'));
google.maps.event.addListener(places, 'place_changed', function() {
var place = places.getPlace();
});
});
例如,如果我們的位置Shelgate路,倫敦SW11 1BD,美國Kingdom.I要提取的地址作爲路名:Shelgate路,城市:倫敦郵政編碼:SW11 1BD國家:英國。
工作。 :) 謝謝! – Alphy