-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathadmin.html
More file actions
30 lines (29 loc) · 822 Bytes
/
admin.html
File metadata and controls
30 lines (29 loc) · 822 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
30
<!DOCTYPE html>
<html>
<head>
<title>Adgeo Admin</title>
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no"/>
<style type="text/css">
html, body{
margin: 0;
height:100%;
width: 100%;
}
#map{
height: 90%;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCS0PG64GbRdru_fizH6GNAL3gffJua5vw&libraries=drawing,geometry"></script>
</head>
<body>
<div style="height:10%;">
<div style="height:95%;box-shadow:0 1px 7px grey;font-weight:bold;font-size:18px;text-align:center;">
Click on the map to mark the vertices of a region
</div>
</div>
<div id="map">
</div>
<script src="/res/mapAdmin.js"></script>
</body>
</html>