-
Notifications
You must be signed in to change notification settings - Fork 0
/
trevo.js
172 lines (140 loc) · 4.83 KB
/
trevo.js
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
function createMap21() {
var map;
var paragemLuis = new google.maps.LatLng(38.572859, -7.910755);
var estacao = new google.maps.LatLng(38.567787, -7.918346);
var carreira21paragem1 = new google.maps.LatLng(38.583720, -7.912567);
// Google maps para a carreira 21
var mapProp = {
center: new google.maps.LatLng(38.5697999, -7.9149639),
zoom: 16,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById("googleMap1"), mapProp);
var marker = new google.maps.Marker({
position: paragemLuis,
title: "Largo Luis de Camões"
});
marker.setMap(map);
var marker = new google.maps.Marker({
position: estacao,
title: "Estação de Autocarros"
});
marker.setMap(map);
var marker = new google.maps.Marker({
position: carreira21paragem1,
title: "Bairro do Granito"
});
marker.setMap(map);
google.maps.event.trigger(map, "resize");
var bounds = new google.maps.LatLngBounds();
bounds.extend(estacao);
bounds.extend(carreira21paragem1);
bounds.extend(paragemLuis);
map.fitBounds(bounds);
}
$("#carreira21mapa").on("shown.bs.modal", createMap21);
function createMap22() {
var map;
var paragemLuis = new google.maps.LatLng(38.572859, -7.910755);
var estacao = new google.maps.LatLng(38.567787, -7.918346);
var carreira22paragem1 = new google.maps.LatLng(38.610696, -7.899541);
// Google maps para a carreira 22
var mapProp = {
center: new google.maps.LatLng(38.5697999, -7.9149639),
zoom: 16,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById("googleMap2"), mapProp);
var marker = new google.maps.Marker({
position: paragemLuis,
title: "Largo Luis de Camões"
});
marker.setMap(map);
var marker = new google.maps.Marker({
position: estacao,
title: "Estação de Autocarros"
});
marker.setMap(map);
var marker = new google.maps.Marker({
position: carreira22paragem1,
title: "Canaviais"
});
marker.setMap(map);
google.maps.event.trigger(map, "resize");
var bounds = new google.maps.LatLngBounds();
bounds.extend(estacao);
bounds.extend(paragemLuis);
bounds.extend(carreira22paragem1)
map.fitBounds(bounds);
}
$("#carreira22mapa").on("shown.bs.modal", createMap22);
function createMap31() {
var map;
var paragemLuis = new google.maps.LatLng(38.572859, -7.910755);
var estacao = new google.maps.LatLng(38.567787, -7.918346);
var carreira31paragem1 = new google.maps.LatLng(38.569769, -7.923109);
// Google maps para a carreira 31
var mapProp = {
center: new google.maps.LatLng(38.5697999, -7.9149639),
zoom: 16,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById("googleMap3"), mapProp);
var marker = new google.maps.Marker({
position: paragemLuis,
title: "Largo Luis de Camões"
});
marker.setMap(map);
var marker = new google.maps.Marker({
position: estacao,
title: "Estação de Autocarros"
});
marker.setMap(map);
var marker = new google.maps.Marker({
position: carreira31paragem1,
title: "Malagueira"
});
marker.setMap(map);
google.maps.event.trigger(map, "resize");
var bounds = new google.maps.LatLngBounds();
bounds.extend(estacao);
bounds.extend(paragemLuis);
bounds.extend(carreira31paragem1);
map.fitBounds(bounds);
}
$("#carreira31mapa").on("shown.bs.modal", createMap31);
function createMap33() {
var map;
var paragemLuis = new google.maps.LatLng(38.572859, -7.910755);
var estacao = new google.maps.LatLng(38.567787, -7.918346);
var carreira33paragem1 = new google.maps.LatLng(38.572223, -7.896854);
// Google maps para a carreira 33
var mapProp = {
center: new google.maps.LatLng(38.5697999, -7.9149639),
zoom: 16,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById("googleMap4"), mapProp);
var marker = new google.maps.Marker({
position: paragemLuis,
title: "Largo Luis de Camões"
});
marker.setMap(map);
var marker = new google.maps.Marker({
position: estacao,
title: "Estação de Autocarros"
});
marker.setMap(map);
var marker = new google.maps.Marker({
position: carreira33paragem1,
title: "Sra da Saúde"
});
marker.setMap(map);
google.maps.event.trigger(map, "resize");
var bounds = new google.maps.LatLngBounds();
bounds.extend(estacao);
bounds.extend(paragemLuis);
bounds.extend(carreira33paragem1);
map.fitBounds(bounds);
}
$("#carreira33mapa").on("shown.bs.modal", createMap33);