Этот код работает правильно, извлекая компоненты адреса в отдельные поля формы, но моя проблема в том, что он заставляет меня называть HTML-идентификатор ввода идентичным компоненту адреса.Например, с приведенным ниже кодом .js мне нужно:
<html>
<input id="postal_code"> and
<input id="locality">
</html>
Как изменить синтаксис .js, чтобы он по-прежнему извлекал компоненты "postal_code" и "locality", но помещал их в поля формы, которые я назвал:
<html>
<input id="zip_code"></input> and
<input id="city"></input>
</html>
Вот (полный) javascript;мой оригинальный пост был только фрагмент этого:
var placeSearch, autocomplete;
var componentForm = {
street_number: 'short_name',
postal_code: 'long_name',
locality: 'long_name',
country: 'short_name',
};
var defaultBounds = new google.maps.LatLngBounds(
new google.maps.LatLng(40.790908, -79.766323),
new google.maps.LatLng(-28.246058, 22.318632));
function initAutocomplete() {
autocomplete = new google.maps.places.Autocomplete(
(document.getElementById('typeaddress')),
{bounds: defaultBounds,
types: ['address']});
autocomplete.addListener('place_changed', fillInAddress);
}
function fillInAddress() {
// Get the place details from the autocomplete object.
var place = autocomplete.getPlace();
for (var component in componentForm) {
document.getElementById(component).value = '';
document.getElementById(component).disabled = false;
}
// Get each component of the address from the place details
// and fill the corresponding field on the form.
for (var i = 0; i < place.address_components.length; i++) {
var addressType = place.address_components[i].types[0];
if (componentForm[addressType]) {
var val = place.address_components[i][componentForm[addressType]];
document.getElementById(addressType).value = val;
}
}
}