Update index.html

This commit is contained in:
Daniel LaForce 2024-08-01 19:42:13 -06:00
parent 18b0b77733
commit 03c91670c3
1 changed files with 4 additions and 4 deletions

View File

@ -59,8 +59,8 @@
</head>
<body>
<h1>CSMS Claims and Neighbors</h1>
<iframe src="https://www.google.com/maps/d/embed?mid=1uaJCMW64w_zwERr9nFcVJchrZdocNbA&ll=39.03966489533956%2C-105.32945964046155&z=14"></iframe>
<iframe src="https://www.gaiagps.com/public/VVXcZPvEfvAbvRWi5F0DQPNT/?embed=True"></iframe>
<iframe src="/redirect/google-maps"></iframe>
<iframe src="/redirect/gaia-gps"></iframe>
<div id="button-container">
<a href="#" class="button" id="google-maps-link">View in Google Maps</a>
<a href="#" class="button" id="gaia-gps-link">View in Gaia GPS</a>
@ -88,7 +88,7 @@
event.preventDefault();
const token = generateToken(16);
localStorage.setItem('gaiaAccessToken', token);
const url = `https://csms.argobox.com/redirect/gaia-gps?token=${token}`;
const url = `/redirect/gaia-gps?token=${token}`;
gtag('event', 'click', {
'event_category': 'Outbound Link',
'event_label': 'Gaia GPS',
@ -101,7 +101,7 @@
event.preventDefault();
const token = generateToken(16);
localStorage.setItem('googleMapsAccessToken', token);
const url = `https://csms.argobox.com/redirect/google-maps?token=${token}`;
const url = `/redirect/google-maps?token=${token}`;
gtag('event', 'click', {
'event_category': 'Outbound Link',
'event_label': 'Google Maps',