-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (48 loc) · 1.74 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Sticky Note Map</title>
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0" />
<script src='https://unpkg.com/[email protected]/dist/maplibre-gl.js'></script>
<link href='https://unpkg.com/[email protected]/dist/maplibre-gl.css' rel='stylesheet' />
<script src="https://unpkg.com/@maplibre/[email protected]/dist/maplibre-gl-geocoder.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/@maplibre/[email protected]/dist/maplibre-gl-geocoder.css" type="text/css" />
<script src="https://unpkg.com/[email protected]/dist/pmtiles.js"></script>
<link href="style.css" rel="stylesheet" />
</head>
<body>
<div id="map"></div>
<div id="info01">
<h3>Sticky Note Map</h3>
<p>Ver. 0.03n © 2024 by AMX Project</p>
<p><div id="Count"></div></p>
<button id="myBtn"><b>What is this map?</b></button>
</div>
<script src="main.js"></script>
<div id="info02">
<details id="newContents">
<summary>Latest Post (10)</summary>
<table id="infoTable" border="1.0" cellpadding="2">
<tr><th>Post List</th></tr>
</table>
</details>
</div>
<div id="myModal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<h3>Sticky Note Map</h3>
<p>
<span class="blue"><b>Sticky Note Map</b></span> is a map where you can easily put your information on a smart map.<br>
<hr>
<span><b>Originally developed by Office-Shirado</b></span>
<br>
<span class="blue"><b>Maintained by AMX Project.</b></span><br>
<span class="red"><b>A main maintainer is hfu.</b></span><br>
<span><b>Contribution of hfu is a part of UN Smart Maps Group activities.</b></span>
</p>
</div>
</div>
<script src="modal.js"></script>
</body>
</html>