Refactored tag list in their own component
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user