-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap-in-jquery.html
35 lines (35 loc) · 989 Bytes
/
map-in-jquery.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
<!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 Map</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBmWvG0umKXjtmkkVN1w9bqBrNihXX3-Rk&callback=myMap"></script>
<style>
#heading {
text-align: center;
color: blue;
}
#map {
height: 530px;
width: 100%;
border: 1px solid blue;
}
</style>
</head>
<body>
<h1 id="heading">My Google Map</h1>
<div id="map"></div>
<script>
$(document).ready(function () {
// Initialize the map
var map = new google.maps.Map(document.getElementById("map"), {
center: { lat: 33.68, lng: 73.04 },
zoom: 8,
});
});
</script>
</body>
</html>