export let communes = [ { location: [["Canada","Montreal"],[45.55541047232767, -73.42859611607271]], status: "forming", members: 2, contact: ["https://discord.gg/xAPZmyr8B6","DiscordInviteLink"] }, { location: [["Estonia","KohtlaJarve"],[59.409521829709504, 27.288415912535914]], status: "forming", members: 2, contact: ["https://discord.gg/xAPZmyr8B6","DiscordInviteLink"] }, { location: [["Latvia",""],[56.934159375258055, 25.269099001330265]], status: "forming", members: 1, contact: ["https://discord.gg/xAPZmyr8B6","DiscordInviteLink"] } ] export let communesByCountry = {} for (let c of communes) { let country = c.location[0][0] if (country in communesByCountry) { communesByCountry[country].push(c) } else { communesByCountry[country] = [c] } } export function addMarkersCommunes(map,content) { for (let g of communes) { let coordinates let text = "" for (let field in g) { let fieldText = content[field] + ": " if (field=="contact") { text += fieldText + "" + content[g.contact[1]]+ "" } else if (field=="location") { let location = g[field][0] let town = location[1]=="" ? "" : ", " + content[location[1]] text += fieldText + content[location[0]] + town + "
" coordinates = g[field][1] } else if (field=="status") { text += fieldText + content[g[field]] + "
" } else { text += fieldText + g[field] + "
" } } var markerIcon = new L.Icon({ iconUrl: 'https://www.libsoc.org/img/common/markers/marker-red.png', shadowUrl: 'https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.7/images/marker-shadow.png', iconSize: [25, 41], iconAnchor: [12, 41], popupAnchor: [1, -34], shadowSize: [41, 41] }); let marker = L.marker(coordinates, {icon: markerIcon}) marker.addTo(map).bindPopup(text) } }