-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmapApp.html
More file actions
25 lines (24 loc) · 767 Bytes
/
mapApp.html
File metadata and controls
25 lines (24 loc) · 767 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
<!DOCTYPE html>
<html>
<head><title> ADS-B Map </title>
<meta name="viewport"
content="initial-scale=1.0, user-scalable=no" />
<style type="text/css">
html { height: 100% }
body { height: 100%; margin: 0; padding: 0 }
#mapDiv {
height: 400px; width: 100%; }
</style>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBZ4ClMwcXBcfO3_bqQPTvryxi5GZN7g0I">
</script>
<script src='mapApp.js'></script>
</head>
<body>
<h3>Google Map Test</h3>
<div id="mapDiv"></div>
<button id="btnTerrain">Terrain</button>
<button id="btnRoadmap">Roadmap</button>
<button id="btnSatellite">Satellite</button>
<button id="btnHybrid">Hybrid</button>
</body>
</html>