document.addEventListener('DOMContentLoaded', function() { document.addEventListener('wpcf7submit', function(event) { let form = event.target; let indirizzoInput = form.querySelector('input[name="indirizzo"]'); let coordinateInput = form.querySelector('input[name="coordinate"]'); if (indirizzoInput && coordinateInput) { let indirizzoCompleto = `${indirizzoInput.value}, Roma, Italia`; let GOOGLE_API_KEY = "AIzaSyAifx7l-MnXIM9D2M3Fzjz_WeT2bq69N_I"; // Sostituisci con la tua API Key di Google Maps let geocodeUrl = 'https://maps.googleapis.com/maps/api/geocode/json?address=${encodeURIComponent(indirizzoCompleto)}&key=${GOOGLE_API_KEY}'; fetch(geocodeUrl) .then(response => response.json()) .then(data => { if (data.results.length > 0) { let location = data.results[0].geometry.location; let latLong = `${location.lat}, ${location.lng}`; coordinateInput.value = latLong; } }) .catch(error => console.error('Errore nella geocodifica:', error)); } }, false); });
Go to Top