From d4527e2ca1fcc5c18e91a0c86f62565f6718d4dc Mon Sep 17 00:00:00 2001
From: Alexis <35.alexis.pele@gmail.com>
Date: Mon, 11 Dec 2023 20:53:06 +0100
Subject: [PATCH] Added sample files for SVG Overlay
---
src/components/maps/WorldMap.astro | 22 +-
.../maps/overlay/CountryOverlay.astro | 1377 +++++++++++++++++
2 files changed, 1395 insertions(+), 4 deletions(-)
create mode 100644 src/components/maps/overlay/CountryOverlay.astro
diff --git a/src/components/maps/WorldMap.astro b/src/components/maps/WorldMap.astro
index a4324a7b..561cc4db 100644
--- a/src/components/maps/WorldMap.astro
+++ b/src/components/maps/WorldMap.astro
@@ -1,4 +1,5 @@
---
+import CountryOverlay from './overlay/CountryOverlay.astro';
import type { MapMarker, PlayerMarker } from '@/types/Leaflet';
import markersData from '@/components/maps/data/markers.json'
@@ -10,6 +11,8 @@ const players = playersData as PlayerMarker
+
+
diff --git a/src/components/maps/overlay/CountryOverlay.astro b/src/components/maps/overlay/CountryOverlay.astro
new file mode 100644
index 00000000..88ca24dd
--- /dev/null
+++ b/src/components/maps/overlay/CountryOverlay.astro
@@ -0,0 +1,1377 @@
+
\ No newline at end of file