-
Notifications
You must be signed in to change notification settings - Fork 0
/
Map.html
41 lines (34 loc) · 796 Bytes
/
Map.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
<!DOCTYPE html>
<html>
<head>
<style>
html,
body {
height: 100%;
}
body {
display: flex;
width: 100%;
margin: auto;
background: #333;
}
iframe {
flex: 0 0 auto;
margin: auto;
}
</style>
</head>
<body>
<!-- DO NOT COPY this URL. It cannot be used in your production site. -->
<iframe src="https://snazzymaps.com/embed/232779" width="100%" height="100%" style="border:none;"></iframe>
</body>
<script>
function initMap() {
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 4,
center: {lat: -33, lng: 151},
disableDefaultUI: true
});
}
</script>
</html>