45 lines
1008 B
HTML
45 lines
1008 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Pilgrim</title>
|
|
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no">
|
|
<script src="jquery-3.7.1.min.js"></script>
|
|
<script src="lib.js"></script>
|
|
<script src="https://unpkg.com/maplibre-gl@3.1.0/dist/maplibre-gl.js"></script>
|
|
<link href="https://unpkg.com/maplibre-gl@3.1.0/dist/maplibre-gl.css" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
#map {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
}
|
|
#features {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 20%;
|
|
overflow: auto;
|
|
background: rgba(255, 255, 255, 0.8);
|
|
}
|
|
.maplibregl-popup {
|
|
max-width: 200px;
|
|
font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="map"></div>
|
|
<pre id="features"></pre>
|
|
<script>
|
|
lib.init();
|
|
</script>
|
|
</body>
|
|
</html>
|