-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathOLA_map.html
More file actions
executable file
·32 lines (24 loc) · 1.18 KB
/
OLA_map.html
File metadata and controls
executable file
·32 lines (24 loc) · 1.18 KB
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
<!--* Nicholas Potyok | Start:[06/18/19] -->
<!-- Comment Color Legend -->
<!--* [Title] -->
<!--? [Explanation] -->
<!--TODO [Notes] -->
<!--Config [properties to alter] -->
<!-- View comment colors with VS code exstension: 'better comments' -->
<html>
<head>
<h1> OLA Map </h1>
<link rel="stylesheet" href="OLA_map_style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<!--* [Container for map] -->
<div id="map"></div>
<!--* [Container for Legend] -->
<div id='legend'></div>
<!--* [link to map.js file-->
<script defer src="./map.js"></script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBqD0Ls2AOD1e3JjRsYgdijoC-eshUPvB4&callback=initMap" type="text/javascript"></script>
<script defer src="https://cdn.rawgit.com/googlemaps/js-marker-clusterer/gh-pages/src/markerclusterer.js" type="text/javascript"></script>
</body>
</html>