From 4d0ffdffc64b01b3fb1a59f05434c7be993ff702 Mon Sep 17 00:00:00 2001
From: Anton Tranelis <31516529+antontranelis@users.noreply.github.com>
Date: Tue, 6 May 2025 11:28:28 +0200
Subject: [PATCH] fix(source): new marker icons (#214)
* 3.0.82
* version number
* steps-icon
---
src/Utils/MarkerIconFactory.ts | 2 ++
src/assets/css/marker-icons.css | 7 +++++++
2 files changed, 9 insertions(+)
diff --git a/src/Utils/MarkerIconFactory.ts b/src/Utils/MarkerIconFactory.ts
index e6229fcd..8dfb3cc8 100644
--- a/src/Utils/MarkerIconFactory.ts
+++ b/src/Utils/MarkerIconFactory.ts
@@ -71,6 +71,8 @@ const addIcon = (icon: string) => {
return ''
case 'cannabis':
return ''
+ case 'steps':
+ return ''
default:
return ''
}
diff --git a/src/assets/css/marker-icons.css b/src/assets/css/marker-icons.css
index c69102d3..4c7ce298 100644
--- a/src/assets/css/marker-icons.css
+++ b/src/assets/css/marker-icons.css
@@ -115,4 +115,11 @@
top: -36px;
left: 4px;
width: 24px;
+}
+
+.steps-icon {
+ position: relative;
+ top: -34px;
+ left: 4px;
+ width: 24px;
}
\ No newline at end of file