-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
39 lines (36 loc) · 981 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
37
38
39
<!DOCTYPE html>
<html>
<head>
<title>Gigamap</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<style>
html, body, #map-canvas {
height: 100%;
margin: 0px;
padding: 0px
}
.info {
height: 20px;
}
#legend {
background: white;
padding: 10px;
font-size: 18px;
}
.grande { color: #FCB933; }
.att { color: #FF7400; }
</style>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBOEfp-O1f8ErW1yPNbb__Fce5V_NSWym8&sensor=false&libraries=geometry"></script>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="app.js"></script>
</head>
<body>
<div id="map-canvas"></div>
<div id="legend">
<span class="grande">Grande Power 1000</span>
<br />
<span class="att">AT&T Gigapower</span>
</div>
</body>
</html>