forked from SectorLabs/2dimagerydemo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (34 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Type" content="text/html;" />
<title>DRGCC - 2D Imagery</title>
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon.ico" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-134999510-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-134999510-2');
</script>
<!-- Stylesheets -->
<link rel="stylesheet" href="css/leaflet.css" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<!-- Map -->
<div id="map" class="map"></div>
<script src="js/leaflet.js"></script>
<script src="js/esri-leaflet.js"
integrity="sha512-YZ6b5bXRVwipfqul5krehD9qlbJzc6KOGXYsDjU9HHXW2gK57xmWl2gU6nAegiErAqFXhygKIsWPKbjLPXVb2g=="
crossorigin=""></script>
<script src="js/jquery.min.js"></script>
<script src="js/leaflet.textpath.js"></script>
<script src="js/index.js"></script>
</body>
</html>