form switchano a seconda della modalità
This commit is contained in:
parent
e7c6e44e1b
commit
424124ab9a
1 changed files with 8 additions and 2 deletions
|
@ -18,8 +18,8 @@ export function initEvents(map){
|
|||
event.stopPropagation();
|
||||
//editMode = true;
|
||||
//tmpMarkerSet = false;
|
||||
markerFormContainer.style.display = 'flex';
|
||||
noticeCoordsPicker.style.display = 'block';
|
||||
markerFormContainer.style.display = 'flex'; //tutto
|
||||
noticeCoordsPicker.style.display = 'block'; //messaggio inseirmento
|
||||
|
||||
// switch modalità inserimento/visualizzazione
|
||||
if (isRedIcon) {
|
||||
|
@ -28,6 +28,9 @@ export function initEvents(map){
|
|||
document.getElementById('map').style = 'cursor: auto;';
|
||||
editMode = false;
|
||||
tmpMarkerSet = true;
|
||||
noticeCoordsPicker.style.display = 'block'; //messaggio inseirmento
|
||||
markerFormContainer.style.display = 'none'; //tutto
|
||||
|
||||
// implementare eliminazione (visiva) dell'eventuale marker temporaneo inserito
|
||||
|
||||
} else {
|
||||
|
@ -36,6 +39,8 @@ export function initEvents(map){
|
|||
document.getElementById('map').style = 'cursor: url("https://unpkg.com/leaflet@1.9.4/dist/images/marker-icon.png") 13 41, auto;';
|
||||
editMode = true;
|
||||
tmpMarkerSet = false;
|
||||
remainingForm.style.display = 'none';
|
||||
|
||||
}
|
||||
|
||||
// attiva/disattiva icona X
|
||||
|
@ -62,6 +67,7 @@ export function initEvents(map){
|
|||
}
|
||||
const marker = createMarker(tmpMarker, L, map)
|
||||
tmpMarkerSet = true
|
||||
//document.getElementById("addMarkerBtn").innerHTML = '<img src="../img/marker-icon13.png" alt="Button Image" />';
|
||||
// Va creata la logica di eliminazione del marker tmp
|
||||
//localStorage.setItem("tmpMarkerId", marker._leaflet_id);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue