This commit is contained in:
2025-04-08 23:22:18 +05:00
commit 43e711d393
39 changed files with 1793 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
import IMarker from "../types/IMarker";
export const markers: IMarker[] = [
{
id: 1,
src: "/images/markers/home.png",
name: "home",
x: "56.7%",
y: "39.8%",
popupPosition: "left",
},
{
id: 2,
src: "/images/markers/marasi-drive.png",
name: "marasi-drive",
x: "58.6%",
y: "42%",
popupPosition: "right",
},
{
id: 3,
src: "/images/markers/dubai-marina.png",
name: "dubai-marina",
x: "22.5%",
y: "76%",
popupPosition: "right",
},
];