-
Notifications
You must be signed in to change notification settings - Fork 19
/
GoogleStreetView.html
49 lines (47 loc) · 1.31 KB
/
GoogleStreetView.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
49
<!DOCTYPE html>
<html>
<head>
<title>Google Street View</title>
<meta name="viewport" content="initial-scale=1.0">
<meta charset="utf-8">
<style>
/* Always set the map height explicitly to define the size of the div
* element that contains the map. */
#map {
height: 100%;
}
/* Optional: Makes the sample page fill the window. */
html, body {
height: 100%;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="map"></div>
<script>
var panorama;
function initMap() {
// Note: constructed panorama objects have visible: true
// set by default.
panorama = new google.maps.StreetViewPanorama(
document.getElementById('map'), {
position: { lat: 42.345573, lng: -71.098326 },
addressControlOptions: {
position: google.maps.ControlPosition.BOTTOM_CENTER
},
linksControl: false,
panControl: false,
enableCloseButton: false
});
}
function setPano(lat, lon) {
latLng = new google.maps.LatLng(lat, lon)
panorama.setPosition(latLng);
}
</script>
<script src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&v=3.53&callback=initMap"
async defer></script>
</body>
</html>