From 1bb9ca0108b6fb333dc449de41f49f099138672e Mon Sep 17 00:00:00 2001 From: popovspiridon99 Date: Tue, 23 Dec 2025 13:28:40 +0900 Subject: [PATCH] change feature highlight style --- client/src/components/map/MapStyles.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/components/map/MapStyles.ts b/client/src/components/map/MapStyles.ts index c5fbec6..9da347c 100644 --- a/client/src/components/map/MapStyles.ts +++ b/client/src/components/map/MapStyles.ts @@ -10,11 +10,11 @@ import { MultiPoint, Point } from "ol/geom"; export const highlightStyleYellow = new Style({ stroke: new Stroke({ - color: 'yellow', + color: 'blue', width: 3, }), fill: new Fill({ - color: 'rgba(255, 255, 0, 0.3)', + color: 'rgba(0, 0, 255, 0.5)', }), });