forked from liside/lazyyy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
map.html
47 lines (40 loc) · 1.15 KB
/
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
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<title>Localizing the Map</title>
<!---meta name="viewport" content="initial-scale=1.0, user-scalable=no"--->
<meta charset="utf-8">
<style>
html,
body {
height: 80%;
margin: 0;
padding: 0;
}
#map {
height: 50%;
}
</style>
</head>
<body>
<div id="map"></div>
<script>
// This example displays a map with the language and region set
// to Japan. These settings are specified in the HTML script element
// when loading the Google Maps JavaScript API.
// Setting the language shows the map in the language of your choice.
// Setting the region biases the geocoding results to that region.
function initMap() {
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 8,
center: {
lat: 35.717,
lng: 139.731
}
});
}
</script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAyob97DKlhPrtBiz4g7-fX6ENhTQgkFFA&callback=initMap&language=ja®ion=JP" async defer>
</script>
</body>
</html>