-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
35 lines (27 loc) · 1.06 KB
/
popup.html
File metadata and controls
35 lines (27 loc) · 1.06 KB
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
<!-- Filename: popup.html -->
<!-- Date: July 2017 -->
<!-- Authors: Evgeni Dobranov & Thomas Binu -->
<!-- Purpose: Defines extension interface -->
<html>
<head>
<link rel="stylesheet" href="css/styles.css">
<!-- Proprietary Scripts (JS) -->
<script src="js/popup.js"></script>
<script src="js/mapscript.js"></script>
<script src="js/blacklist.js"></script>
<script src="js/htmlParser.js"></script>
<!-- 3rd Party Scripts (JS) -->
<script src="js/jquery/jquery-3.2.1.min.js"></script>
<script src="js/compromise/compromise.min.js"></script>
<!-- Esri API -->
<link rel="stylesheet" href="https://js.arcgis.com/4.4/esri/css/main.css">
<script src="https://js.arcgis.com/4.4/"></script>
</head>
<body>
<div id="splash">
<img id = 'visable_logo' src="images/ic_esri_splash.jpg">
<img id = 'esri_loader' src="images/ic_loading.gif">
</div>
<div id="mapDiv"></div>
</body>
</html>