csms-claims-and-neighbors/index.html

73 lines
2.7 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>
<!-- Google Maps API with async loading -->
<script async defer src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&libraries=places,visualization,geometry,search"></script>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
}
iframe {
border: none;
}
.button {
display: inline-block;
margin: 10px;
padding: 10px 20px;
font-size: 16px;
color: white;
background-color: #007bff;
border: none;
border-radius: 5px;
text-decoration: none;
}
.button:hover {
background-color: #0056b3;
}
#consent-banner {
position: fixed;
bottom: 0;
width: 100%;
background: #333;
color: #fff;
padding: 10px;
text-align: center;
display: none;
}
</style>
<script>
document.addEventListener('DOMContentLoaded', function() {
if (!localStorage.getItem('consentGiven')) {
document.getElementById('consent-banner').style.display = 'block';
}
});
function acceptConsent() {
localStorage.setItem('consentGiven', 'true');
document.getElementById('consent-banner').style.display = 'none';
}
</script>
</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" width="800" height="600"></iframe>
<br>
<a href="https://www.google.com/maps/d/u/0/viewer?mid=1uaJCMW64w_zwERr9nFcVJchrZdocNbA&ll=39.035283304733184%2C-105.2908042761522&z=14" target="_blank" class="button">View in Google Maps</a>
<a href="https://www.gaiagps.com/map/?lat=39.03966489533956&lon=-105.32945964046155&zoom=14&loc=14.0/-105.3120/39.0318&pubLink=VVXcZPvEfvAbvRWi5F0DQPNT&folderId=e810350b-1b3f-49bf-8f67-6a497827f190" target="_blank" class="button">View in Gaia GPS</a>
<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>
</body>
</html>