// функция show toast должна проверять, является ли элемент пустым, не удаляя сам элемент //, если он пустой, выводит EMPTY //, если это не так, выводит NOT EMPTY
function showToast(){
if(document.getElementById("latitude").innerHTML= ""){
window.plugins.toast.showWithOptions(
{
message: "NOT EMPTY",
duration: "short",
position: "bottom",
},
);
}else{
window.plugins.toast.showWithOptions(
{
message: "EMPTY",
duration: "short",
position: "bottom",
},
);
}
}