-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (27 loc) · 917 Bytes
/
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
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="viewport" content="initial-scale=1.0">
<title>map</title>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js"> </script>
<!--
Insert an api key, like this...
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=insert_api_key_here"> </script>
-->
<script type="text/javascript" src="makemap.js"> </script>
</head>
<body>
<div style="padding:6px;font-size:18px;">
<form>
<label for="Dataset">Choose a Dataset:</label>
<select id="Dataset" name="Dataset" onchange="reload()">
<option value="2019-09">2019-09</option>
<option value="2019-10">2019-10</option>
<option value="2019-11">2019-11</option>
<option value="2019-12">2019-12</option>
</select>
</form>
</div>
<div id="map-canvas" style="width: 90%; height:90%;" ></div>
<br />
</body>
</html>