echo $json[0]["results"]["geometry"]["location"]["lat"];
const collections = []
for (let i = 0; i < data.length; i++) {
if (!collections.includes(data[i].collection)) {
collections.push(data[i].collection);
}
}
const collections = Array.from(new Set(data.map(d => d.collection)));
const collections = Object.keys(data.reduce((res, next) => {
res[next.collection] = null;
return res;
}, {}));
const collections = data.reduce((res, next) => {
if (!res.includes(next.collection)) {
res.push(next.collection);
}
return res;
}, {});
function runall() {
closePopup();
$.ajax({
type: "POST",
url: "proces.php",
data: "send_form=3",
success: function() {
$(".popupbg").show();
$(".popup").css('margin-left', ($(window).width() / 2 - $(".popup").width() / 2) + 'px');
$(".popup").empty().append("<p style=\"width:100%;\">Задача поставлена в очередь</p><button class='cancel' onclick='closePopup()'>Ок</button>").show();
$('#a2').click();
},
error: function() {
// показать сообщение об ошибке
}
});
}
я что-то не так делаю видно
$('#rate').val(val).trigger('change');