From 34d494f7a8d9b6348cbfec7196c631acab8818f9 Mon Sep 17 00:00:00 2001 From: Pjotr Prins Date: Mon, 26 Oct 2020 08:46:11 +0000 Subject: Improved map to show sequences in one view --- bh20simplewebuploader/static/map.js | 53 ++++++++++++++++++++++++++----------- 1 file changed, 38 insertions(+), 15 deletions(-) (limited to 'bh20simplewebuploader/static/map.js') diff --git a/bh20simplewebuploader/static/map.js b/bh20simplewebuploader/static/map.js index dfe88f9..cabb63d 100644 --- a/bh20simplewebuploader/static/map.js +++ b/bh20simplewebuploader/static/map.js @@ -1,4 +1,10 @@ +/* + +Draws the map using Leaflet and OpenStreetmap + +drawMap() is the main function. +*/ var map = L.map( 'mapid', { center: [51.505, -0.09], // Default to U.S.A minZoom: 2, @@ -10,17 +16,21 @@ L.tileLayer( 'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', { subdomains: ['a','b','c'] }).addTo(map); +/* + * When a page gets rendered this function draws the map + */ function drawMap(){ var mymap = map; + // ---- fetch all counts fetch(scriptRoot + "api/getCountByGPS") .then(response => { console.log(response) return response.json(); }) .then(data => { - updateMapMarkers(data); + buildMapMarkers(data); }); document.getElementById("map_view").classList.remove("invisible"); @@ -28,10 +38,8 @@ function drawMap(){ } - - /* - * These functions updates the map with markers + * Register a marker with special attribute track # sequences */ seqMarker = L.Marker.extend({ @@ -42,26 +50,41 @@ seqMarker = L.Marker.extend({ } }); +/* + * Builds markers on the map. We use cluster groups to allow + * counts at different zoom levels. This function is called + * once on page loading. markerClusterGroup just handles it. + * Note the display is handled in CSS (main.css) as .my-custom-icon* + */ -function updateMapMarkers(data) { +function buildMapMarkers(data) { let markers = L.markerClusterGroup({ + singleMarkerMode: true, iconCreateFunction: function (cluster) { - var theseMarkers = cluster.getAllChildMarkers(); //// -- this is the array of each marker in the cluster. + // ---- add marker + // array of each marker in the cluster: + var theseMarkers = cluster.getAllChildMarkers(); + + // --- compute zoom level and set style sumCount = 0; for (var i = 0; i < theseMarkers.length; i++) { - // console.log(theseMarkers[i]); sumCount += theseMarkers[i].options.sequences; } - var digits = (sumCount + '').length; - - return L.divIcon({ - html: sumCount, - className: 'my-custom-icon my-custom-icon-'+digits, - }); - }, - }); + if (theseMarkers.length < 2) { + return L.divIcon({ + html: sumCount, + className: 'my-custom-icon my-custom-icon-0', + }) + } else { + var digits = (sumCount + '').length; + return L.divIcon({ + html: sumCount, + className: 'my-custom-icon my-custom-icon-'+digits, + }); + }}}); + // ---- Build the marker list for (let i = 0; i < data.length; i++) { let {"count": fastaCount, GPS, LocationLabel: label } = data[i]; let countSeq = Number(fastaCount); -- cgit v1.2.3