From cf3aa56bc9a680420602fbd9839ab7b2a1a6c5ea Mon Sep 17 00:00:00 2001 From: webgisdeveloper Date: Mon, 26 Jul 2021 21:34:40 -0400 Subject: [PATCH] #125 reverse back --- simccs_maptool/templates/simccs_maptool/index.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/simccs_maptool/templates/simccs_maptool/index.html b/simccs_maptool/templates/simccs_maptool/index.html index e2b19ea..5766e0f 100644 --- a/simccs_maptool/templates/simccs_maptool/index.html +++ b/simccs_maptool/templates/simccs_maptool/index.html @@ -1790,8 +1790,7 @@ } }); // 0-0.25, 0.25-5, 5-7.5, 10 - var result_networkLayer = new L.geoJSON(data["Network"],{style:{color:"blue",opacity:0.5,weight:function (feature) {var x = feature.properties.Flow; - if (x<=0.25) {return 1;} else if (x>0.25 && x<=5) {return 2;} else if (x>5 && x<=7.5) {return 3;} else if (x>7.5) {return 4;} else {return 1;}},pane:"linesPane"}, + var result_networkLayer = new L.geoJSON(data["Network"],{style:{color:"blue",opacity:0.5,weight:4,pane:"linesPane"}, onEachFeature: function (feature, layer) {layer.bindPopup("Flow: " + feature.properties.Flow +"
Length (KM): "+feature.properties.LengKM);} });