-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·102 lines (83 loc) · 2.59 KB
/
index.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html>
<head>
<title>Google maps</title>
<link rel="stylesheet" href="css/app.css"/>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script src="js/map.js"></script>
</head>
<body>
<h1>Google</h1>
<h2>Map + static direction</h2>
<div class="wrap">
<a class="liveMap1" target="_blank" href="#"><img id="staticMap1" src="" alt=""/></a>
<p>Address: 1600 Amphitheatre Parkway, Mountain View, CA 94043, USA</p>
<p>Origin: San Francisco, United States</p>
</div>
<h2>Map + geolocated direction</h2>
<div class="wrap">
<a class="liveMap2" target="_blank" href="#"><img id="staticMap2" src="" alt=""/></a>
<p>Address: 1600 Amphitheatre Parkway, Mountain View, CA 94043, USA</p>
<p>Origin: (geolocated)</p>
</div>
<h2>Geolocated map + unknown origin</h2>
<div class="wrap">
<a class="liveMap3" target="_blank" href="#"><img id="staticMap3" src="" alt=""/></a>
<p>Address: (geolocated)</p>
<p>Fallback: 1600 Amphitheatre Parkway, Mountain View, CA 94043, USA</p>
</div>
<h2>Geolocated map and destination + known origin</h2>
<div class="wrap">
<a class="liveMap4" target="_blank" href="#"><img id="staticMap4" src="" alt=""/></a>
<p>Address: (geolocated)</p>
<p>Fallback & Origin: San Francisco, United States</p>
</div>
<script type="text/javascript">
var url = $.staticMap({
markerIcon: '//tinyurl.com/2ftvtt6',
address: '1600 Amphitheatre Parkway, Mountain View, CA 94043, United States',
width: 500,
height:400,
zoom: 13
});
$('#staticMap1').attr('src', url);
var urlLive = $.liveMapLink({
address: "1600 Amphitheatre Parkway, Mountain View, CA 94043, United States",
origin: 'San Francisco, United States'
});
$('.liveMap1').attr('href', urlLive);
$('#staticMap2').staticMap({
address: '1600 Amphitheatre Parkway, Mountain View, CA 94043, United States',
width: 500,
height:400,
zoom: 12
});
$('.liveMap2').liveMapLink({
address: "1600 Amphitheatre Parkway, Mountain View, CA 94043, United States",
geoloc: 'origin'
});
$('#staticMap3').staticMap({
address: '1600 Amphitheatre Parkway, Mountain View, CA 94043, United States',
width: 500,
height:400,
zoom: 11,
geoloc: true
});
$('.liveMap3').liveMapLink({
address: "1600 Amphitheatre Parkway, Mountain View, CA 94043, United States",
origin: ''
});
$('#staticMap4').staticMap({
address: 'San Francisco, United States',
width: 500,
height:400,
zoom: 10,
geoloc: true
});
$('.liveMap4').liveMapLink({
origin: 'San Francisco, United States',
geoloc: 'address'
});
</script>
</body>
</html>