-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgoogleMapsEmbedCode.html
More file actions
executable file
·33 lines (21 loc) · 707 Bytes
/
Copy pathgoogleMapsEmbedCode.html
File metadata and controls
executable file
·33 lines (21 loc) · 707 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
27
28
29
30
31
32
33
#Google Maps Java script embed code///
<h3>Where you can find us</h3>
<div id="googleMap" style="width:400px;height:300px;"></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 src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDHM4m3a8eErU_waFwTY2G6-PFq4NRY3kU&callback=myMap"></script>
@@@HTML only code:
<iframe
width="600"
height="450"
frameborder="0" style="border:0"
src="https://www.google.com/maps/embed/v1/place?key=AIzaSyDHM4m3a8eErU_waFwTY2G6-PFq4NRY3kU
&q=Space+Needle,Seattle+WA" allowfullscreen>
</iframe>