-
Notifications
You must be signed in to change notification settings - Fork 42
/
index.html
executable file
·29 lines (28 loc) · 1.06 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
<!DOCTYPE html>
<!--suppress JSUnresolvedLibraryURL -->
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Height Graph Example</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<style>
html, body, #map {
height:100%;
width:100%;
padding:0;
margin:0;
}
</style>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<link rel="stylesheet" href="dist/L.Control.Heightgraph.min.css"/>
<script type="text/javascript" src="example/data.js"></script>
<script type="text/javascript" src="example/mappings.js"></script>
<script type="text/javascript" src="dist/L.Control.Heightgraph.min.js"></script>
</head>
<body>
<div id="map"></div>
</body>
<script type="text/javascript" src="example/example.js">
</script>
</html>