-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ch4_GroundOverlay.html
48 lines (40 loc) · 1.3 KB
/
Ch4_GroundOverlay.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
48
<!DOCTYPE html>
<html>
<head>
<title>Ch4 Ground Overlay</title>
<meta name="viewport" content="initial-scale=1.0">
<meta charset="utf-8">
<style>
#map {
height: 100%;
}
html,
body {
height: 100%;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="map"></div>
<script>
function initMap() {
var mapOptions = { center: new google.maps.LatLng(51.50334151281109, -0.1273725998895543), zoom: 19 };
var map;
map = new google.maps.Map(document.getElementById('map'), mapOptions);
// south-west and north-east corners where the image should be placed
var imageBounds = new google.maps.LatLngBounds(
new google.maps.LatLng(51.503260954928486, -0.12832746629885605),
new google.maps.LatLng(51.503729273890755, -0.1272773814695256)
);
var historicalOverlay = new google.maps.GroundOverlay(
"images/downing-street.gif",
imageBounds);
historicalOverlay.setMap(map);
}
</script>
<!-- Reference the API -->
<script src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap" async defer></script>
</body>
</html>