-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (49 loc) · 2.33 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="manifest" href="./manifest.webmanifest">
<title>Leaflet Map</title>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ=="
crossorigin=""/>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-gZwIG9x3wUXg2hdXF6+rVkLF/0Vi9U8D2Ntg4Ga5I5BZpVkVxlJWbSQtXPSiUTtC0TjtGOmxa1AJPuV0CPthew=="
crossorigin=""></script>
<link rel="stylesheet" href="css/mousePosition.css">
<link rel="stylesheet" href="css/Control.OSMGeocoder.css">
<link rel="stylesheet" href="css/leaflet.draw.css">
<link rel="stylesheet" href="css/leaflet-measure.css">
<link rel="stylesheet" href="css/leaflet.draw-shapefile.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet-easybutton@2/src/easy-button.css">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
</head>
<body>
<div id="map">
<button id='delete'>Delete Features</button>
<a href='#' id='export'>Export Features</a>
<div id="info">
<div id="top">
<h2>Information</h2>
<div id="close" onclick="iframe()"><img src="css/images/close.svg" height="24px" width="24px"></div>
</div>
<hr />
<iframe src="info.html"></iframe>
</div>
<script src="sw.js"></script>
<script src="js/mousePosition.js"></script>
<script src="js/Control.OSMGeocoder.js"></script>
<script src="js/leaflet.draw-src.js"></script>
<script src="js/easy-button.js"></script>
<script src="js/leaflet.browser.print.min.js"></script>
<script src="js/leaflet-measure.js"></script>
<script src="https://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-omnivore/v0.3.1/leaflet-omnivore.min.js"></script>
<script src="js/shp.js"></script>
<script src="js/leaflet.shapefile.js"></script>
<script src="js/leaflet.draw-shapefile.js"></script>
<script src="https://cdn.osmbuildings.org/classic/0.2.2b/OSMBuildings-Leaflet.js"></script>
<script src="js/main.js"></script>
</body>
</html>