site-libsoc/Server/public/js/coops.js

57 lines
2.2 KiB
JavaScript
Raw Permalink Normal View History

2023-06-24 20:44:16 +07:00
export let coops = [
{
logo: "chiron_logo",
name: "Chiron Health",
2023-07-09 19:25:09 +07:00
location: ["EstoniaKohtlaJarve",[59.40338782864918, 27.286240058760324]],
market: "wellnessAndHealth",
2023-06-24 20:44:16 +07:00
workers: 2,
2023-07-09 19:25:09 +07:00
status: "inDevelopment",
2023-06-24 20:44:16 +07:00
website: "chrn.health",
2023-07-09 19:25:09 +07:00
contact: ["https://chat.whatsapp.com/BhnmUNljUxJ2AjeHUwyTKh","WhatsAppInviteLink"],
description: "descriptionChironHealth"
2023-06-24 20:44:16 +07:00
},
{
logo: "kuusk_logo",
name: "Kuusk",
2023-07-09 19:25:09 +07:00
location: ["EstoniaKohtlaJarve",[59.405466538976185, 27.289104862336302]],
market: "herbalTeas",
2023-06-24 20:44:16 +07:00
workers: 1,
2023-07-09 19:25:09 +07:00
status: "inDevelopment",
2023-06-24 20:44:16 +07:00
website: "-",
2023-07-09 19:25:09 +07:00
contact: ["https://chat.whatsapp.com/BhnmUNljUxJ2AjeHUwyTKh","WhatsAppInviteLink"],
description: "kuuskDescription"
2023-06-24 20:44:16 +07:00
}
]
2023-07-09 19:25:09 +07:00
export function addMarkersCoops(map,content) {
2023-06-24 20:44:16 +07:00
for (let g of coops) {
let coordinates
let text = ""
for (let field in g) {
2023-07-03 03:07:45 +07:00
let fieldText
if (field!="logo") {
fieldText = content[field] + ": "
}
2023-06-24 20:44:16 +07:00
if (field=="logo") {
text += "<picture><source srcset=" + "/img/coops/" + g.logo + ".webp><source srcset='/img/coops/" + g.logo + ".png'><img alt='logo' style='position: relative; max-height: 5rem; max-width: 100%; margin: auto;'></picture>" + "<br>"
}
else if (field=="contact") {
2023-07-09 19:25:09 +07:00
text += fieldText + "<a href='https://www." + g.contact[0] + "' target='_blank' rel=noreferrer>" + content[g.contact[1]] + "</a>" + "<br>"
2023-06-24 20:44:16 +07:00
}
else if (field=="website") {
text += fieldText + "<a href='" + g.website + "' target='_blank' rel=noreferrer>" + g.website + "</a>" + "<br>"
}
else if (field=="location") {
2023-07-09 19:25:09 +07:00
text += fieldText + content[g[field][0]] + "<br>"
2023-06-24 20:44:16 +07:00
coordinates = g[field][1]
}
2023-07-03 03:07:45 +07:00
else if (field=="market" || field=="status" || field=="description") {
2023-07-09 19:25:09 +07:00
text += fieldText + content[g[field]] + "<br>"
2023-07-03 03:07:45 +07:00
}
2023-06-24 20:44:16 +07:00
else {
text += fieldText + g[field] + "<br>"
}
}
L.marker(coordinates).addTo(map).bindPopup(text)
}
}