Posts

Showing posts from May, 2024

Jesse Quote

geocoder.geocode({ address: address }, (results, status) => { if (status !== 'OK') { resultDiv.innerHTML = 'An error occurred while geocoding the address.'; return; } const [latitude, longitude] = [results[0].geometry.location.lat(), results[0].geometry.location.lng()]; const origin = `${latitude},${longitude}`; const destination = '492 creek road, genoa, NY 13071 USA'; // Use the distance matrix service to calculate the distance and duration of the trip distanceMatrixService.getDistanceMatrix({ origins: [origin], destinations: [destination], travelMode: google.maps.TravelMode.DRIVING }, (response, status) => { if (status !== 'OK') { resultDiv.innerHTML = 'An error occurred while calculating the distance.'; return; } const distan...