From 3d09c2454554d7cd911cc412f1b76f25b925ce57 Mon Sep 17 00:00:00 2001 From: Piotr Gawron <p.gawron@atcomp.pl> Date: Thu, 6 Jun 2024 11:29:34 +0200 Subject: [PATCH] pin number for comments --- .../utils/config/commentsLayer/getCommentsFeatures.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Map/MapViewer/utils/config/commentsLayer/getCommentsFeatures.ts b/src/components/Map/MapViewer/utils/config/commentsLayer/getCommentsFeatures.ts index f1e1a82c..3fc44fcc 100644 --- a/src/components/Map/MapViewer/utils/config/commentsLayer/getCommentsFeatures.ts +++ b/src/components/Map/MapViewer/utils/config/commentsLayer/getCommentsFeatures.ts @@ -50,7 +50,7 @@ export const getCommentsFeatures = ( pointToProjection: UsePointToProjectionResult; }, ): Feature[] => { - return comments.map(comment => - getCommentFeature(comment, { pointToProjection, type: comment.pinType, value: 7 }), + return comments.map((comment, index) => + getCommentFeature(comment, { pointToProjection, type: comment.pinType, value: index }), ); }; -- GitLab