", content: "Collège Saint-Joseph
", color: "orange", }, ]; function initialize() { const LeafIcon = L.Icon.extend({ options: { iconSize: [46, 74], } }); if (document.getElementById('group_map') != null) { var map = L.map('group_map').setView([47.245484, 6.036237], 15); L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', { attribution: '© OpenStreetMap contributors' }).addTo(map); if (markersList.length > 0) { for (let index = 0; index < markersList.length; index++) { const data = markersList[index]; const icon = new LeafIcon({iconUrl: "https://www.stjoseph-stpaul.org/college/wp-content/themes/saintpaul/assets/img/markers/"+data.color+"_marker.png"}); L.marker([data.lat, data.lng], {icon: icon, title: data.title}).bindPopup(data.description).addTo(map); } } } } initialize();