121 lines
4.2 KiB
HTML
121 lines
4.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>CSMS Claims and Neighbors</title>
|
|
<!-- Google tag (gtag.js) -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-CC1B9CQ691"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
gtag('config', 'G-CC1B9CQ691');
|
|
</script>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
text-align: center;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
iframe {
|
|
border: none;
|
|
width: 800px;
|
|
height: 600px;
|
|
margin: 20px auto;
|
|
display: block;
|
|
}
|
|
.button {
|
|
display: inline-block;
|
|
margin: 10px 20px;
|
|
padding: 10px 20px;
|
|
font-size: 16px;
|
|
color: white;
|
|
background-color: #007bff;
|
|
border: none;
|
|
border-radius: 5px;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
}
|
|
.button:hover {
|
|
background-color: #0056b3;
|
|
}
|
|
#button-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
#consent-banner {
|
|
position: fixed;
|
|
bottom: 0;
|
|
width: 100%;
|
|
background: #333;
|
|
color: #fff;
|
|
padding: 10px;
|
|
text-align: center;
|
|
display: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>CSMS Claims and Neighbors</h1>
|
|
<iframe src="https://www.google.com/maps/d/embed?mid=1uaJCMW64w_zwERr9nFcVJchrZdocNbA&ll=39.035283304733184%2C-105.2908042761522&z=14"></iframe>
|
|
<iframe src="https://www.gaiagps.com/public/VVXcZPvEfvAbvRWi5F0DQPNT/?embed=True"></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>
|
|
</div>
|
|
<div id="consent-banner">
|
|
This site uses cookies to improve your experience. By continuing to browse, you accept the use of cookies.
|
|
<button onclick="acceptConsent()">Accept</button>
|
|
</div>
|
|
<script>
|
|
function generateToken(length) {
|
|
const characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
|
|
let result = '';
|
|
for (let i = 0; i < length; i++) {
|
|
result += characters.charAt(Math.floor(Math.random() * characters.length));
|
|
}
|
|
return result;
|
|
}
|
|
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
if (!localStorage.getItem('consentGiven')) {
|
|
document.getElementById('consent-banner').style.display = 'block';
|
|
}
|
|
|
|
document.getElementById('gaia-gps-link').addEventListener('click', function(event) {
|
|
event.preventDefault();
|
|
const token = generateToken(16);
|
|
localStorage.setItem('gaiaAccessToken', token);
|
|
const url = `/redirect/gaia-gps?token=${token}`;
|
|
gtag('event', 'click', {
|
|
'event_category': 'Outbound Link',
|
|
'event_label': 'Gaia GPS',
|
|
'value': url
|
|
});
|
|
window.location.href = url;
|
|
});
|
|
|
|
document.getElementById('google-maps-link').addEventListener('click', function(event) {
|
|
event.preventDefault();
|
|
const token = generateToken(16);
|
|
localStorage.setItem('googleMapsAccessToken', token);
|
|
const url = `/redirect/google-maps?token=${token}`;
|
|
gtag('event', 'click', {
|
|
'event_category': 'Outbound Link',
|
|
'event_label': 'Google Maps',
|
|
'value': url
|
|
});
|
|
window.location.href = url;
|
|
});
|
|
});
|
|
|
|
function acceptConsent() {
|
|
localStorage.setItem('consentGiven', 'true');
|
|
document.getElementById('consent-banner').style.display = 'none';
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|