-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (35 loc) · 1.51 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
<!DOCTYPE html>
<html>
<head>
<title>Campus Trees</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.2/leaflet.css" />
<link rel="stylesheet" type="text/css" href="map.css">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
</head>
<body>
<div id="map"></div>
<script src="http://cdn.leafletjs.com/leaflet-0.7.2/leaflet.js"></script>
<script src="http://esri.github.io/esri-leaflet/lib/esri-leaflet/esri-leaflet.js"></script>
<script src="//js.arcgis.com/3.9compact/"></script>
<script src="map.js"></script>
<div id="my-popup">
<div id="my-popup-content"></div>
<div id="conditionDiv">
<label for="conditionSelect">Condition:</label>
<select id="conditionSelect" >
<option value='' disabled selected style='display:none;'>Please Choose</option>
<option value="poor">Poor</option>
<option value="fair">Fair</option>
<option value="good">Good</option>
</select>
</div>
<div id="my-popup-footer">
<button type="button" onclick="submitEdits();">
Submit
</button>
</div>
</div>
</body>
</html>