-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (24 loc) · 834 Bytes
/
index.html
File metadata and controls
35 lines (24 loc) · 834 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Quick Start - Leaflet</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/x-icon" href="docs/images/favicon.ico" />
<link rel="stylesheet" href="main.css" />
<link rel="stylesheet" href="leaflet.css" />
<link rel="stylesheet" href="Control.Coordinates.css" />
<link rel="stylesheet" href="leaflet.draw.css" />
<script src="leaflet.js"></script>
<script src='leaflet-fullHash.js'></script>
<script src="Control.Coordinates.js"></script>
<script src="leaflet.draw.js"></script>
</head>
<body>
<div id="map">
</div>
<a href='#' id='export'>Export Features</a>
<script src="main.js"></script>
<script src="plugins.js"></script>
</body>
</html>