//Page code export function buttonCalc_click(event) { distance($w("#startingPoint").value, $w("#endPoint").value) .then(function (resp) { let distanceInMiles = parseFloat(resp.rows[0].elements[0].distance["text"], 10); distanceInMiles *= 1.00; distanceInMiles = distanceInMiles.toFixed(2); let duration = resp.rows[0].elements[0].duration["text"]; let miles = resp.rows[0].elements[0].distance["text"] // printing the result on the screen $w("#result").value = distanceInMiles; $w("#duration").value = duration; $w("#textboxMiles").value = miles; }) } //Backend file code export async function distance(origin, destination) { const secret = await wixSecretsBackend.getSecret("apiDistance"); const distanceUrl = "https://maps.googleapis.com/maps/api/distancematrix/json?units=imperial"; const url = distanceUrl + `&origins=` + origin + `&destinations=` + destination + `&key=${secret}`; return fetch(url, { method: 'get' }) .then((httpResponse) => httpResponse.json()); }
top of page

Moving Tips

I'm a paragraph. Click here to add your own text and edit me. It’s easy. Just click “Edit Text” or double click me to add your own content and make changes to the font.

MAKE A LIST

I'm a paragraph. Click here to add your own text and edit me. It’s easy. Just click “Edit Text” or double click me to add your own content and make changes to the font. I’m a great place for you to tell a story and let your users know a little more about you.

SAY GOODBYE TO UNUSED STUFF

I'm a paragraph. Click here to add your own text and edit me. It’s easy. Just click “Edit Text” or double click me to add your own content and make changes to the font. I’m a great place for you to tell a story and let your users know a little more about you.

GET STURDY, UNIFORM PACKING SUPPLIES

I'm a paragraph. Click here to add your own text and edit me. It’s easy. Just click “Edit Text” or double click me to add your own content and make changes to the font. I’m a great place for you to tell a story and let your users know a little more about you.

PACK THE BASICS YOURSELF

I'm a paragraph. Click here to add your own text and edit me. It’s easy. Just click “Edit Text” or double click me to add your own content and make changes to the font. I’m a great place for you to tell a story and let your users know a little more about you.

bottom of page