-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (47 loc) · 1.97 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no">
<title>Global Streamflow Forecasting</title>
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjs/6.2.2/math.js"></script>
<link rel="stylesheet" href="https://js.arcgis.com/3.25/dijit/themes/claro/claro.css">
<link rel="stylesheet" href="https://js.arcgis.com/3.25/esri/css/esri.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="appStyle.css">
<script
src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous">
</script>
<script src="https://js.arcgis.com/3.25/"></script>
<script src="scripts/script.js"></script>
</head>
<body class="claro">
<!-- <body> -->
<div id="mapDiv">
<select id='layersMenu'>
<option value="Select Region">Select Region</option>
<option value="Esri Test Layers">Esri Test Layers</option>
<option value="Central America">Central America</option>
<option value="South America">South America</option>
<option value="South Asia">South Asia</option>
<option value="Africa">Africa</option>
</select>
<img id="loadingImg" src="loader.gif" alt="My image">
<div id="bottomPanel">
<div id="timeInfo">
<div id ="slidercap"></div> <!-- Word on timer -->
<div id="timeSliderDiv"></div>
</div>
</div>
<div id="info">
<div id="legendDiv"></div>
</div>
</div>
<div id="graphs" style="display: none;">
</div>
</body>
</html>