feat: implement device filtering based on GisSystemStatic Allow property
- Add Allow=1 filter in createAndSetDevices.js to hide devices with Allow=0 - Update mapLayersSlice.js setInitialLayers to respect Allow values for visibility - Modify MapLayersControlPanel.js localStorage initialization to set visibility based on Allow property - Only systems with Allow=1 are now visible by default, Allow=0 systems are hidden - Ensures consistent filtering across device markers and layer visibility controls This change addresses the requirement to hide stations/devices when their corresponding IdSystem in GisSystemStatic.json has Allow=0, improving the map display by showing only authorized/allowed systems to users.
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
"IdSystem": 1,
|
||||
"Name": "TALAS",
|
||||
"Longname": "Talas Meldestationen",
|
||||
"Allow": 1,
|
||||
"Allow": 0,
|
||||
"Icon": 1
|
||||
},
|
||||
{
|
||||
@@ -66,7 +66,7 @@
|
||||
"IdSystem": 11,
|
||||
"Name": "GMA",
|
||||
"Longname": "Glättemeldeanlagen",
|
||||
"Allow": 0,
|
||||
"Allow": 1,
|
||||
"Icon": 11
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user