From 3e66b56d585542345a0c023355aeb50e4e89740f Mon Sep 17 00:00:00 2001 From: Matteo V Date: Fri, 20 Oct 2023 10:19:45 +0200 Subject: [PATCH] fix #9601 styles (#9632) --- web/client/epics/geoProcessing.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/web/client/epics/geoProcessing.js b/web/client/epics/geoProcessing.js index bb3b06a7be..0300b29ff9 100644 --- a/web/client/epics/geoProcessing.js +++ b/web/client/epics/geoProcessing.js @@ -160,8 +160,8 @@ const styleRules = [ "kind": "Fill", "outlineWidth": 3, "outlineColor": "#ffac12", + "outlineOpacity": 1, "color": "#ffffff", - "opacity": 1, "fillOpacity": 0.3 } ] @@ -170,7 +170,7 @@ const styleRules = [ symbolizers: [{ "kind": "Line", "width": 3, - "color": "#ffffff", + "color": "#ffac12", "opacity": 0.3 }] }, { @@ -178,11 +178,11 @@ const styleRules = [ symbolizers: [{ "kind": "Mark", "wellKnownName": "Circle", - "strokeColor": "#f5a623", "color": "#ffffff", "fillOpacity": 0.3, - "strokeWidth": 3, + "strokeColor": "#ffac12", "strokeOpacity": 1, + "strokeWidth": 3, "radius": 8 }] }