From 48caca541bf19e1c4f75f5b95272b99eb06a02bc Mon Sep 17 00:00:00 2001 From: Pjotr Prins Date: Fri, 17 Jul 2020 11:03:04 +0100 Subject: Update map popup --- bh20simplewebuploader/static/map.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bh20simplewebuploader/static/map.js b/bh20simplewebuploader/static/map.js index 5ecf95d..1003f7d 100644 --- a/bh20simplewebuploader/static/map.js +++ b/bh20simplewebuploader/static/map.js @@ -42,7 +42,7 @@ function updateMapMarkers(data) { [lon, lat] = coordinates.map(parseFloat); let point = L.point() marker = (L.marker([lat, lon])); - marker.bindPopup("" + label + "
" + "FastaCount: " +fastaCount); + marker.bindPopup("" + label + "
" + "SARS-CoV-2
sequences: " +fastaCount); markers.addLayer(marker); } } -- cgit v1.2.3