-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmap1.html
More file actions
26 lines (21 loc) · 862 Bytes
/
map1.html
File metadata and controls
26 lines (21 loc) · 862 Bytes
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
<!DOCTYPE html>
<html>
<body>
<h1>My First Google Map</h1>
<div id="googleMap" style="width:100%;height:400px;"></div>
<script>
function myMap() {
var mapProp= {
center:new google.maps.LatLng(51.508742,-0.120850),
zoom:5,
};
var map=new google.maps.Map(document.getElementById("googleMap"),mapProp);
}
</script>
<script <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3502.8265543710786!2d77.24005561415576!3d28.60497969208027!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x390ce3205cb1335b%3A0xca167b07b108a526!2sINAAYAT+RESTAURANT!5e0!3m2!1sen!2sin!4v1522492137068" width="600" height="450" frameborder="0" style="border:0 /iframe>" allowfullscreen></script>
<!--
To use this code on your website, get a free API key from Google.
Read more at: https://www.w3schools.com/graphics/google_maps_basic.asp
-->
</body>
</html>