-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathl2t.html
48 lines (39 loc) · 1010 Bytes
/
l2t.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
<html>
<head>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-Rksm5RenBEKSKFjgI3a41vrjkw4EVPlJ3+OiI65vTjIdo9brlAacEuKOiQ5OFh7cOI1bkDwLqdLw3Zg0cRJAAQ=="
crossorigin=""/>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-/Nsx9X4HebavoBvEBuyp3I7od5tA0UzAxs+j83KgC8PU0kgB4XiK4Lfe4y4cgBtaRJQEIFCW+oC506aPT2L1zw=="
crossorigin=""></script>
<style type="text/css">
#map {
height: 360px;
width: 49%;
}
#r {
width: 49%;
float: right;
border: 0.2px solid #c0c0c0;
}
.selected {
background-color: red;
}
</style>
<script src="jquery.min.js"></script>
<script src="l2t-nostore.js"></script>
</head>
<body>
<div id="r">
<table border="1">
<thead>
<!-- empty, filled by init -->
</thead>
<tbody>
<!-- empty, filled by onEachFeature -->
</tbody>
</table>
</div>
<div id="map"></div>
</body>
</html>