2024-09-21 00:36:00 +02:00
|
|
|
export function basicElements() {
|
|
|
|
const addMarkerBtn = document.getElementById("addMarkerBtn");
|
|
|
|
const markerFormContainer = document.getElementById("markerFormContainer");
|
|
|
|
const markerForm = document.getElementById("markerForm");
|
|
|
|
const noticeCoordsPicker = document.getElementById("noticeCoordsPicker");
|
|
|
|
const remainingForm = document.getElementById("remainingForm");
|
|
|
|
return [
|
|
|
|
addMarkerBtn,
|
|
|
|
markerFormContainer,
|
|
|
|
markerForm,
|
|
|
|
noticeCoordsPicker,
|
|
|
|
remainingForm,
|
|
|
|
];
|
|
|
|
}
|