-
Notifications
You must be signed in to change notification settings - Fork 0
/
googleAPI.html
47 lines (44 loc) · 1.16 KB
/
googleAPI.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
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Google APIS</title>
<style>
body{
font-family: poppins;
text-align: center;
}
:root{
--primarycolor: red;
--secondarycolor: #333;
}
#map{
height: 400px;
width: 100%;
}
h1{
color: var(--primarycolor);
}
</style>
</head>
<body>
<h1>Google API'S</h1>
<h2>1. Google Maps</h2>
<div id="map">
My Map will go here
</div>
<script>
function myMap(){
var mapCanvas = document.getElementById("map");
var mapOptions = {
center: new google.maps.LatLng(52.5, -0.2),
zoom: 10
};
var map = new google.maps.Map(mapCanvas, mapOptions);
}
</script>
<script src="https://maps.googleapis.com/maps/api/js?key=YOUR_KEY&callback=myMap"></script>
</body>
</html>