This commit is contained in:
a-ill
2023-07-16 16:56:28 +03:00
parent 033f4f2a9b
commit 22cace06fd
22 changed files with 104 additions and 58 deletions

View File

@@ -41,7 +41,8 @@ export function addMarkersParties(map,content) {
text += fieldText + "<a href='" + g.website + "' target='_blank' rel=noreferrer>" + g.website + "</a>" + "<br>"
}
else if (field=="location") {
text += fieldText + content[g[field][0]] + "<br>"
let locationString = location.map(x => content[x]).join(", ")
text += fieldText + locationString + "<br>"
coordinates = g[field][1]
}
else if (field=="description") {