58 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
| <head>
 | |
|   <meta charset="UTF-8">
 | |
|   <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | |
|   <title>Map Viewer</title>
 | |
|   <style>
 | |
|     body {
 | |
|       font-family: Arial, sans-serif;
 | |
|       margin: 0;
 | |
|       padding: 0;
 | |
|       display: flex;
 | |
|       flex-direction: column;
 | |
|       align-items: center;
 | |
|     }
 | |
|     iframe {
 | |
|       width: 100%;
 | |
|       height: 50vh;
 | |
|       border: none;
 | |
|     }
 | |
|     .buttons {
 | |
|       margin: 20px;
 | |
|     }
 | |
|     .buttons button {
 | |
|       padding: 10px 20px;
 | |
|       margin: 0 10px;
 | |
|       font-size: 16px;
 | |
|       cursor: pointer;
 | |
|     }
 | |
|   </style>
 | |
|   <!-- 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>
 | |
| </head>
 | |
| <body>
 | |
|   <iframe src="https://www.google.com/maps/d/embed?mid=1uaJCMW64w_zwERr9nFcVJchrZdocNbA&ll=39.03554998301922,-105.29915470303165&z=14"></iframe>
 | |
|   <iframe src="https://www.gaiagps.com/directory/abc123"></iframe>
 | |
|   <div class="buttons">
 | |
|     <button onclick="navigateToMap('google')">View on Google Maps</button>
 | |
|     <button onclick="navigateToMap('gaia')">View on Gaia GPS</button>
 | |
|   </div>
 | |
|   <script>
 | |
|     function navigateToMap(map) {
 | |
|       if (map === 'google') {
 | |
|         window.location.href = 'redirect-google.html';
 | |
|       } else if (map === 'gaia') {
 | |
|         window.location.href = 'redirect-gaia.html';
 | |
|       }
 | |
|     }
 | |
|   </script>
 | |
| </body>
 | |
| </html>
 |