forked from Greenstand/treetracker-web-map-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·66 lines (58 loc) · 1.9 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
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<title>TreeTracker</title>
<style type="text/css">
html,
body,
#map-canvas {
height: 100%;
margin: 0;
padding: 0;
}
</style>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBLHZL7-3Y5aNMlW_Cz5G1NyBn5R0Mmurs">
</script>
<script type="text/javascript" src="js/jquery-2.1.3.min.js">
</script>
<script type="text/javascript" src="js/jquery-ui.min.js">
</script>
<link rel="stylesheet" href="js/jquery-ui.min.css">
<script type="text/javascript" src="js/config.js">
</script>
<script type="text/javascript" src="js/map.js">
</script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<link rel=stylesheet href="css/style.css" />
<link rel=stylesheet href="icon_style.css" />
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
</head>
<body>
<div id="overlay" class="overlay_container">
<div id="tree_info_div" class="overlay_innards">
<span id='close-button'><div class="icon-angle-left"></div></span>
<div class="tree_info">
<img id="tree-image" src="">
<div class="planter_image">
<img id="planter_image"t sta src="img/portrait_placeholder_100.png">
</div>
<div class="planted_by">
<p><span>Planted by: </span><span id="planter_name">Planter</span></p>
</div>
<div id="created_on" class="info_data">
<p>Created on : </p>
<p id="create-data"></p>
</div>
<div id="status" class="info_data">
<p>Status : </p>
<p id="status-data">Planted</p>
</div>
</div>
</div>
</div>
<div id="map-canvas"></div>
</body>
</html>