-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (41 loc) · 2.4 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
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
<title>ACWF LCWIP Demonstration Web Map</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin="" />
<link rel="stylesheet" href="CSS/app.css" />
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
crossorigin=""></script>
<script src="https://unpkg.com/@ngageoint/[email protected]/dist/leaflet-geopackage.min.js"></script>
<!-- Load Leaflet Basemap Providers: https://github.com/leaflet-extras/leaflet-providers -->
<!-- Modified to include USGS TNM web services -->
<script src="JS/leaflet-providers.js"></script>
<!-- Load Font Awesome icons -->
<script src="https://use.fontawesome.com/a64989e3a8.js"></script>
<!-- Grouped Layer Plugin: https://github.com/ismyrnow/leaflet-groupedlayercontrol -->
<link rel="stylesheet" href="CSS/leaflet.groupedlayercontrol.min.css">
<script src="JS/leaflet.groupedlayercontrol.min.js" type="text/javascript"></script>
<!-- Overview mini map Plugin: https://github.com/Norkart/Leaflet-MiniMap -->
<link rel="stylesheet" href="CSS/Control.MiniMap.css">
<script src="JS/Control.MiniMap.min.js" type="text/javascript"></script>
<!-- Leaflet Drawing Plugin: https://github.com/codeofsumit/leaflet.pm -->
<link rel="stylesheet" href="https://unpkg.com/leaflet.pm@latest/dist/leaflet.pm.css">
<script src="https://unpkg.com/leaflet.pm@latest/dist/leaflet.pm.min.js"></script>
<!-- Leaflet WMS Plugin: https://github.com/heigeo/leaflet.wms -->
<script src="JS/leaflet.wms.js"></script>
<!-- Logo Credit Plugin: https://github.com/gregallensworth/L.Control.Credits -->
<link rel="stylesheet" href="CSS/leaflet-control-credits.css" />
<script type="text/javascript" src="JS/leaflet-control-credits.js"></script>
</head>
<body>
<h1 class="title">Arundel LCWIP Demo Route Maps</h1>
<h3 class="sub-content">Example cycling and walking routes</h3>
<div id="map" class="map"></div>
<script type="text/javascript" src="index.js"></script>
</body>
</html>