-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2t.html
23 lines (22 loc) · 789 Bytes
/
2t.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head><link href="../styles.css" rel="stylesheet"><script src="http://maps.google.com/maps/api/js"></script><script src="https://code.jquery.com/jquery-2.1.4.min.js"></script><script src="https://cdn.jsdelivr.net/gmap3/7.2.0/gmap3.min.js"></script></head>
<body>
<div class="map"></div>
<script>
$('.map')
.gmap3({
center:[48.8620722, 2.352047],
zoom:4
})
.marker([
{position:[48.8620722, 2.352047]},
{address:"86000 Poitiers, France"},
{address:"66000 Perpignan, France", icon: "http://maps.google.com/mapfiles/marker_grey.png"}
])
.on('click', function (marker) {
marker.setIcon('http://maps.google.com/mapfiles/marker_green.png');
});
</script>
</body>
</html>