diff options
author | Pjotr Prins | 2020-07-17 11:03:04 +0100 |
---|---|---|
committer | Pjotr Prins | 2020-07-17 11:03:04 +0100 |
commit | 48caca541bf19e1c4f75f5b95272b99eb06a02bc (patch) | |
tree | bc576359bbde981b68255bf0b55972e54b9d5ae0 /bh20simplewebuploader/static/map.js | |
parent | 108a96f8608c3d82c8cfe1d33ebb37501c01413b (diff) | |
download | bh20-seq-resource-48caca541bf19e1c4f75f5b95272b99eb06a02bc.tar.gz bh20-seq-resource-48caca541bf19e1c4f75f5b95272b99eb06a02bc.tar.lz bh20-seq-resource-48caca541bf19e1c4f75f5b95272b99eb06a02bc.zip |
Update map popup
Diffstat (limited to 'bh20simplewebuploader/static/map.js')
-rw-r--r-- | bh20simplewebuploader/static/map.js | 2 |
1 files changed, 1 insertions, 1 deletions
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("<b>" + label + "</b><br/>" + "FastaCount: " +fastaCount); + marker.bindPopup("<b>" + label + "</b><br/>" + "SARS-CoV-2<br/>sequences: " +fastaCount); markers.addLayer(marker); } } |