Added school markers to map

This commit is contained in:
Alexis
2024-02-26 23:02:37 +01:00
parent 3a6abdaf93
commit 6086161a78
6 changed files with 113 additions and 4 deletions

View File

@@ -1,4 +1,5 @@
export type MapMarkerGroup = "capitals" | "cities" | "towns" | "landmarks" | "quests" | "custom";
export type MapMarkerIcon = "castle" | "flag" | "graduation-cap" | "location-pin" | "monument" | "push-pin"
export type MapCoords = {
x: number,
@@ -11,6 +12,7 @@ export type MapMarker = {
description?: string,
link?: string,
group?: MapMarkerGroup,
icon?: MapMarkerIcon,
}
export type PlayerMarker = {