From 165d969c847629e63944420ba6af0896ebe10d27 Mon Sep 17 00:00:00 2001 From: log101 Date: Mon, 29 Jul 2024 22:11:44 +0300 Subject: [PATCH] fix: hardcode icon urls --- src/components/Leaflet/icons.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Leaflet/icons.ts b/src/components/Leaflet/icons.ts index e068ca3..a20b16f 100644 --- a/src/components/Leaflet/icons.ts +++ b/src/components/Leaflet/icons.ts @@ -1,12 +1,12 @@ import L from "leaflet" var targetLocationIcon = L.icon({ - iconUrl: "goal.svg", + iconUrl: "https://konulukonum.log101.dev/goal.svg", iconSize: [32, 32], }) var currentLocationIcon = L.icon({ - iconUrl: "blue-dot.png", + iconUrl: "https://konulukonum.log101.dev/blue-dot.png", iconSize: [32, 32], })