26 lines
938 B
HTML
26 lines
938 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/x-icon" href="https://chandlerswift.com/favicon.png" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0" />
|
|
<title>Chandler Swift's Maps</title>
|
|
</head>
|
|
<body class="nav-open">
|
|
<noscript>Sorry, but you'll need JavaScript enabled for any of this to work!</noscript>
|
|
<aside>
|
|
<h1>Chandler's Maps</h1>
|
|
<div class="ol-unselectable ol-control close" style="pointer-events: auto;">
|
|
<button onclick="document.body.classList.toggle('nav-open')">‹</button>
|
|
</div>
|
|
<div id="source"></div>
|
|
</aside>
|
|
<div id="map"></div>
|
|
<div id="popup" class="ol-popup">
|
|
<a href="#" id="popup-closer" class="ol-popup-closer"></a>
|
|
<div id="popup-content"></div>
|
|
</div>
|
|
<script type="module" src="./main.js"></script>
|
|
</body>
|
|
</html>
|