forked from kuznetsovandrey76/chingu-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 1.25 KB
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Google Map</title>
</head>
<body>
<header></header>
<div id="map"></div>
<footer>
<div><img src="img/cohort/articFox.png" alt="articFox"><p>Artic fox</p></div>
<div><img src="img/cohort/cheetah.png" alt="cheetah"><p>Cheetah</p></div>
<div><img src="img/cohort/kangaroo.png" alt="kangaroo"><p>Kangaroo</p></div>
<div><img src="img/cohort/racoon.png" alt="racoon"><p>Racoon</p></div>
<div><img src="img/cohort/redPanda.png" alt="redPanda"><p>Red panda</p></div>
<div><img src="img/cohort/rhino.png" alt="rhino"><p>Rhino</p></div>
</footer>
<script src="markersdata.js"></script>
<script src="main.js"></script>
<!-- <script src="markerclusterer.js"></script> Запасной скрипт google-markerclusterer-->
<script src="https://developers.google.com/maps/documentation/javascript/examples/markerclusterer/markerclusterer.js">
</script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBGZ8LI4eLYygl3uRy4pUzt0E0CDqfyBkQ&callback=initMap"
async defer></script>
</body>
</html>