-
Notifications
You must be signed in to change notification settings - Fork 1
/
leafletTest.html
37 lines (31 loc) · 1.39 KB
/
leafletTest.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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Okami Map - Test</title>
<meta name="description" content="Map of treasure, clovers, etc. in Okami">
<meta name="author" content="Daniel Shepsis">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--Favicon.io-->
<link rel="apple-touch-icon" sizes="180x180" href="./apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./favicon-16x16.png">
<link rel="manifest" href="./site.webmanifest">
<!--Leaflet.js-->
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin=""/>
<!-- Make sure you put this AFTER Leaflet's CSS -->
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"
integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
crossorigin=""></script>
<script src="./Leaflet.moduleTest.js"></script>
<link rel="stylesheet" href="./css/leafletTest.css">
</head>
<body>
<!-- <input id="mapHex" type="text" value="0xf02" />
<input id="mapDec" type="text" value="3842" /> -->
<div id="map"></div>
<script type="module" src="./js/leafletTest.js"></script>
</body>
</html>