This commit is contained in:
2025-08-17 12:32:45 -07:00
parent 11689334f6
commit e4e3698310
3 changed files with 86 additions and 0 deletions

26
maps/index.html Normal file
View File

@@ -0,0 +1,26 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Maps</title>
<script src="maplibre-gl.js"></script>
<link href="maplibre-gl.css" rel="stylesheet" />
<style>
body {
margin: 0;
}
</style>
</head>
<body>
<div id="map" style="width: 100vw; height: 100vh"></div>
<script>
const map = new maplibregl.Map({
style: "https://tiles.openfreemap.org/styles/liberty",
center: [37.444143, -122.159665],
zoom: 9.5,
container: "map",
});
</script>
</body>
</html>

1
maps/maplibre-gl.css Normal file

File diff suppressed because one or more lines are too long

59
maps/maplibre-gl.js Normal file

File diff suppressed because one or more lines are too long