mirror of
https://git.librezo.fr/Librezo/website.git
synced 2025-09-05 12:28:27 +02:00
Carte: prestas
This commit is contained in:
@ -10,6 +10,11 @@
|
||||
{{body|safe}}
|
||||
];
|
||||
for(i in places) {
|
||||
L.marker(places[i]).addTo(map);
|
||||
var popup = '<strong>'+places[i][1]+'</strong>';
|
||||
for(j in places[i][2]) {
|
||||
popup += '<br/>'+places[i][2][j][0]+' : <a href="mailto:'+places[i][2][j][1]+'">'+places[i][2][j][1]+'</a>';
|
||||
}
|
||||
L.marker(places[i][0]).addTo(map)
|
||||
.bindPopup(popup);
|
||||
}
|
||||
</script>
|
||||
|
Reference in New Issue
Block a user