diff options
Diffstat (limited to 'bh20simplewebuploader/static/main.js')
-rw-r--r-- | bh20simplewebuploader/static/main.js | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/bh20simplewebuploader/static/main.js b/bh20simplewebuploader/static/main.js index f2e5d99..a9dfc10 100644 --- a/bh20simplewebuploader/static/main.js +++ b/bh20simplewebuploader/static/main.js @@ -32,16 +32,17 @@ function fetchAPI(apiEndPoint) { return response.json(); }) .then(data => { + console.log(data); markers.clearLayers(); document.getElementById("results").classList.remove("invisible"); document.getElementById("loader").classList.add("invisible"); if (!(apiEndPoint === "/api/getAllaccessions")) { for (let i = 0; i < data.length; i++) { - let {"Fasta Count": fastaCount, GPS, LocationLabel: label } = data[i]; - let coordinates = GPS.match(/Point\((-?[0-9]+(?:.(?:[0-9]+)?)?) (-?[0-9]+(?:.(?:[0-9]+)?)?)\)/); + let {"count": fastaCount, GPS, LocationLabel: label } = data[i]; + let coordinates = GPS.split(" "); if (!(coordinates == null)) { let lat, lon; - [lon, lat] = coordinates.slice(1, 3).map(parseFloat); + [lon, lat] = coordinates.map(parseFloat); let point = L.point() let marker = L.marker([lat, lon]); marker.bindPopup("<b>" + label + "</b><br/>" + "FastaCount: " +fastaCount); @@ -279,4 +280,4 @@ fetch(scriptRoot + "api/getCountByGPS") } }); -}
\ No newline at end of file +} |