From 8e65d6a3dd0d20301106c194a04ddcfabb315e4a Mon Sep 17 00:00:00 2001 From: Henrik Fehlauer Date: Mon, 25 May 2020 18:00:00 +0000 Subject: [PATCH] Show analysis table highlight above quality coding layer (#304) When hovering over rows in the analysis tab, highlighted sections for the route could only be seen on the regular route, but not when any of the color-coded route visualisations were selected. Patch based on a similar fix for data table in d33c795200. --- js/control/TrackAnalysis.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/js/control/TrackAnalysis.js b/js/control/TrackAnalysis.js index e1e92d7..7c35445 100644 --- a/js/control/TrackAnalysis.js +++ b/js/control/TrackAnalysis.js @@ -18,7 +18,9 @@ BR.TrackAnalysis = L.Class.extend({ overlayStyle: { color: 'yellow', opacity: 0.8, - weight: 8 + weight: 8, + // show above quality coding (pane defined in RoutingPathQuality.js) + pane: 'routingQualityPane' } },