# Conflicts: # AGENTS.md # README.md # index.html # package.json # src/data/buildings.js # src/data/grid.js # src/data/pavement.js # src/data/plants.js # src/data/yard.js # src/lib/feature-types.js # src/lib/yard-features.js # src/main.js # styles.css
40 lines
1.4 KiB
HTML
40 lines
1.4 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>A Plot of Plants</title>
|
|
<link rel="stylesheet" href="./vendor/maplibre/maplibre-gl.css" />
|
|
<link rel="stylesheet" href="./vendor/checkbox-tree/checkbox-tree.css" />
|
|
<link rel="stylesheet" href="./styles.css" />
|
|
</head>
|
|
<body>
|
|
<div class="app-shell">
|
|
<aside class="panel">
|
|
<p class="eyebrow">A Plot of Plants</p>
|
|
<h1>204 6th Avenue NW</h1>
|
|
<p class="intro">
|
|
A medium sized city lot in Mandan, ND. A white picket fence surrounds
|
|
a variety of trees, shrubs, and flowers. There are many varieties of
|
|
daylilies.
|
|
</p>
|
|
<section class="visibility-panel" aria-labelledby="visibility-title">
|
|
<h2 id="visibility-title">Map features</h2>
|
|
<div id="visibility-tree"></div>
|
|
</section>
|
|
</aside>
|
|
<main>
|
|
<div class="map-frame">
|
|
<p id="map-status" class="map-status" role="status">Loading the map…</p>
|
|
<div id="map" aria-label="Map of yard"></div>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
|
|
<script src="./src/error-overlay.js"></script>
|
|
<script src="./vendor/pmtiles.js"></script>
|
|
<script src="./vendor/basemaps.js"></script>
|
|
<script type="module" src="./src/main.js"></script>
|
|
</body>
|
|
</html>
|