21 lines
342 B
TypeScript
21 lines
342 B
TypeScript
import { Marker } from "../types/marker";
|
|
|
|
const markers: Marker[] = [
|
|
{
|
|
top: 37.5,
|
|
left: 50,
|
|
itemNumber: 0,
|
|
popup: "/images/markers/popups/1.svg",
|
|
isPopupLeft: true,
|
|
},
|
|
{
|
|
top: 40.5,
|
|
left: 56,
|
|
itemNumber: 1,
|
|
popup: "/images/markers/popups/1.svg",
|
|
isPopupLeft: false,
|
|
},
|
|
];
|
|
|
|
export { markers };
|