diff client/src/map/store.js @ 745:f2691e0d4970

client: add wfs layer for named waterway areas.
author Bernhard Reiter <bernhard@intevation.de>
date Mon, 24 Sep 2018 14:10:44 +0200
parents e57955c1996f
children e33012c0aa7e
line wrap: on
line diff
--- a/client/src/map/store.js	Mon Sep 24 12:33:23 2018 +0200
+++ b/client/src/map/store.js	Mon Sep 24 14:10:44 2018 +0200
@@ -131,6 +131,21 @@
           }
         }),
         isVisible: true
+      },
+      {
+        name: "Waterway Area, named",
+        data: new VectorLayer({
+          source: new VectorSource({
+            strategy: bboxStrategy
+          }),
+          style: new Style({
+            stroke: new Stroke({
+              color: "rgba(0, 132, 0, 1)",
+              width: 2
+            })
+          })
+        }),
+        isVisible: false
       }
     ]
   },