');
marker_redo_icon(pin_clicked);
pin_clicked.push(marker);
marker.setIcon(marker.icon_hover);
var data = {
'action': 'get_shop_info',
'id_shop': marker.id_shop
};
jQuery.post(ajax_url, data, function(response) {
if(response){
jQuery('.p-shop__loc__map__info').html('');
jQuery('.p-shop__loc__map__info').append(response);
}else{
jQuery('.p-shop__loc__map__info').hide();
}
});
});
}
function marker_redo_icon(arr){
if(arr.length > 0){
for (item of arr) {
item.setIcon(item.icon_default);
}
}
}
function show_current_map(){
getLocation(map);
}