-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
26 lines (26 loc) · 999 Bytes
/
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
<!DOCTYPE html>
<html lang="zh-TW">
<head>
<title>LASS: IDW Diagram</title>
<meta charset="utf-8" />
<!-- refresh every 300 seconds -->
<meta http-equiv="refresh" content="300">
<!-- mobile -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<!-- include css -->
<link type="text/css" rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
<link type="text/css" rel="stylesheet" href="css/idw-main.css" />
<link type="text/css" rel="stylesheet" href="css/idw-controls.css" />
<!-- include libraries -->
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<script src="js/leaflet-idw.js"></script>
<script src="js/idw-legend.js"></script>
<script src="js/idw-logo.js"></script>
<script src="js/idw-display.js"></script>
<script src="js/leaflet-idwMarker.js"></script>
</head>
<body>
<div id="map"></div>
</body>
<script src="js/idw-main.js"></script>
</html>