Update
This commit is contained in:
parent
22cace06fd
commit
9bfa4b62f6
|
@ -41,7 +41,8 @@ export function addMarkersParties(map,content) {
|
||||||
text += fieldText + "<a href='" + g.website + "' target='_blank' rel=noreferrer>" + g.website + "</a>" + "<br>"
|
text += fieldText + "<a href='" + g.website + "' target='_blank' rel=noreferrer>" + g.website + "</a>" + "<br>"
|
||||||
}
|
}
|
||||||
else if (field=="location") {
|
else if (field=="location") {
|
||||||
let locationString = location.map(x => content[x]).join(", ")
|
let location = g[field][0]
|
||||||
|
let locationString = location
|
||||||
text += fieldText + locationString + "<br>"
|
text += fieldText + locationString + "<br>"
|
||||||
coordinates = g[field][1]
|
coordinates = g[field][1]
|
||||||
}
|
}
|
||||||
|
|
|
@ -41,7 +41,8 @@ export function addMarkersParties(map,content) {
|
||||||
text += fieldText + "<a href='" + g.website + "' target='_blank' rel=noreferrer>" + g.website + "</a>" + "<br>"
|
text += fieldText + "<a href='" + g.website + "' target='_blank' rel=noreferrer>" + g.website + "</a>" + "<br>"
|
||||||
}
|
}
|
||||||
else if (field=="location") {
|
else if (field=="location") {
|
||||||
let locationString = location.map(x => content[x]).join(", ")
|
let location = g[field][0]
|
||||||
|
let locationString = location
|
||||||
text += fieldText + locationString + "<br>"
|
text += fieldText + locationString + "<br>"
|
||||||
coordinates = g[field][1]
|
coordinates = g[field][1]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue