34 lines
648 B
TypeScript
34 lines
648 B
TypeScript
import { Marker } from "../types/marker";
|
|
|
|
const markers: Marker[] = [
|
|
{
|
|
top: 37,
|
|
left: 54.5,
|
|
itemNumber: 0,
|
|
popup: "/images/markers/popups/2.png",
|
|
isPopupLeft: true,
|
|
isDisabled: false,
|
|
imgSrc: "/images/markers/2.png",
|
|
},
|
|
{
|
|
top: 39.2,
|
|
left: 56.3,
|
|
itemNumber: 1,
|
|
popup: "/images/markers/popups/1.png",
|
|
isPopupLeft: false,
|
|
isDisabled: false,
|
|
imgSrc: "/images/markers/1.png",
|
|
},
|
|
{
|
|
top: 74.2,
|
|
left: 20.2,
|
|
itemNumber: 2,
|
|
popup: "/images/markers/popups/1.png",
|
|
isPopupLeft: true,
|
|
isDisabled: true,
|
|
imgSrc: "/images/markers/2.png",
|
|
},
|
|
];
|
|
|
|
export { markers };
|