-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarkerArray.php
69 lines (58 loc) · 1.62 KB
/
markerArray.php
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<title>Simple Map</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 {
height: 100%;
margin: 0;
padding: 0;
text-align: center;
}
#map {
height: 500px;
width: 600px;
}
</style>
</head>
<body>
<div id="map"></div>
<script>
var locations = [
['CHAN', 12.598682, 102.125576],
['chon', 13.369257, 101.008726]
];
function initMap() {
var mapOptions = {
center: {lat: 13.369257, lng: 101.008726},
zoom: 8,
}
var maps = new google.maps.Map(document.getElementById("map"),mapOptions);
var marker, i, info;
for (i = 0; i < locations.length; i++) {
marker = new google.maps.Marker({
position: new google.maps.LatLng(locations[i][1], locations[i][2]),
map: maps,
title: locations[i][0]
});
info = new google.maps.InfoWindow();
google.maps.event.addListener(marker, 'click', (function(marker, i) {
return function() {
info.setContent(locations[i][0]);
info.open(maps, marker);
}
})(marker, i));
}
}
</script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCn-0PFuaZ0GNJu7-Fff7g3fAfZNQv55ms&callback=initMap" async defer></script>
</body>
</html>