-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (22 loc) · 820 Bytes
/
index.html
File metadata and controls
29 lines (22 loc) · 820 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no">
<title>NRPC Interactive Map</title>
<!-- ArcGIS Styles -->
<link rel="stylesheet" href="https://js.arcgis.com/4.29/esri/themes/light/main.css" />
<!-- External Styles -->
<link rel="stylesheet" href="styles.css" />
<!-- JSZip must load BEFORE ArcGIS to avoid AMD multipleDefine conflict -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.10.1/jszip.min.js"></script>
<!-- ArcGIS JavaScript API -->
<script src="https://js.arcgis.com/4.29/"></script>
</head>
<body>
<div id="viewDiv"></div>
<script src="js/shp-writer.js"></script>
<script src="js/export-utils.js"></script>
<script src="js/main.js"></script>
</body>
</html>