Refactored tag list in their own component

This commit is contained in:
Alexis
2024-01-10 21:03:37 +01:00
parent 68eb0d165f
commit d680cae84d
7 changed files with 236 additions and 141 deletions

View File

@@ -1,4 +1,5 @@
export type MapMarkerGroup = "capitals" | "cities" | "towns" | "landmarks" | "quests";
export type MapMarkerGroup = "capitals" | "cities" | "towns" | "landmarks" | "quests" | "custom";
export type MapCoords = {
x: number,
y: number,
@@ -18,3 +19,10 @@ export type PlayerMarker = {
description?: string,
link?: string,
}
export type CustomMarker = {
lat: number,
lon: number,
title: string,
icon: Object
}