add visualizing webpage

This commit is contained in:
2025-11-20 13:01:12 -05:00
parent dd98d4061f
commit 125cf014a3
4 changed files with 129 additions and 34 deletions

16
map_viz.html Normal file
View File

@@ -0,0 +1,16 @@
<!DOCTYPE html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/4.5.0/chart.umd.js"></script>
<script src="map_gen.js"></script>
<script defer src="map_viz.js"></script>
</head>
<body>
<h1>map viz</h1>
<button type="button" onclick="copy_command()"><h1>copy</h1></button>
<canvas id="graph">
</canvas>
<h2>command here</h2>
<div id="command" style="font-family: monospace">
command will be here!
</div>
</body>