markers, map, button states

This commit is contained in:
2024-04-16 17:57:33 +05:00
parent e0498a7d25
commit 1c906ce371
14 changed files with 290 additions and 22 deletions
+18
View File
@@ -0,0 +1,18 @@
import { Marker } from "../types/marker";
const markers: Marker[] = [
{
top: 38.5,
left: 51,
itemNumber: 0,
popup: "/images/markers/popups/1.svg",
},
{
top: 40.5,
left: 52,
itemNumber: 1,
popup: "/images/markers/popups/1.svg",
},
];
export { markers };