forked from FIRSTMap/firstmap.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (23 loc) · 921 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
<!DOCTYPE html>
<html>
<head>
<title>FIRST Map</title>
<meta name="viewport" content="initial-scale=1.0">
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="map"></div>
<div id='toggles'>
<div id='team_toggle' onclick="toggleMarkers('teams')">T</div>
<div id='regional_toggle' onclick="toggleMarkers('regionals')">R</div>
<div id='district_toggle' onclick="toggleMarkers('districts')">D</div>
</div>
<a href="https://github.com/FIRSTMap/firstmap.github.io" class="github-banner" target="_blank">Fork on GitHub</a>
<!-- Javascript Scripts -->
<script src="data.js"></script>
<script src="competitions.js"></script>
<script src="scripts.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyABrEZwgm0BZrNJuYrAxcyozSQET4HILUU&callback=initMap" async defer></script>
</body>
</html>