Files
leim-maps/src/types/Leaflet.ts
2023-10-13 17:19:58 +02:00

21 lines
409 B
TypeScript

export type MapMarkerGroup = "capitals" | "cities" | "towns" | "landmarks";
export type MapCoords = {
x: number,
y: number,
}
export type MapMarker = {
title: string,
markerCoords: MapCoords,
description?: string,
link?: string,
group?: MapMarkerGroup,
}
export type PlayerMarker = {
title: string,
markerCoords: MapCoords,
description?: string,
link?: string,
}