' + '' + '
' + '' + '
' + '
'; if(annonce["caracteristiques"].indexOf("Climatisation") >=0){ card += '
' + '

' + '
' } if(annonce["caracteristiques"].indexOf("Terrasse") >=0){ card += '
' + '

' + '
' } if(annonce["caracteristiques"].indexOf("Double Vitrage") >=0){ card += '
' + '

' + '
' } if (annonce["type_annonce"] == "Pro") { card += '
' + '

' + '
'; } else { card += '
' + '

' + '
'; } card += '
' + '' + ''; affichage += card; }); $('#bloc_affichage').html(affichage); trierParPrix(); } } }); } } function trierParPrix(){ if(window.container){ window.container.isotope('destroy'); } window.container = $('#bloc_affichage').isotope({ itemSelector: '.filter', getSortData: { category: '[data-category] parseInt', prix: function(itemElem) { var prix = $(itemElem).find('.prix').text(); return parseFloat(prix); } } }); if($('#tri').val() == 'desc'){ window.container.isotope({ sortBy: 'prix', sortAscending: false }); } else{ window.container.isotope({ sortBy: 'prix', sortAscending: true }); } } $("#tri").on( "change", function(){trierParPrix()} ); //trierParPrix(); function photos() { $("img").each(function () { var $this = $(this); this.onerror = function () { $(this).attr('src', '/ui/img/logo.png'); }; }); }; setTimeout(photos(), 10); function initMap() { var map = new google.maps.Map(document.getElementById('map'), { center: { lat: 46.725486 , lng: 2.505604 } , /*Saint-Armand-Montrond*/ zoom: 5 , mapTypeId: google.maps.MapTypeId.TERRAIN }); var geocoder = new google.maps.Geocoder(); var tab; if (emplacements != '') { emplacements = _.unique(emplacements); $.each(emplacements, function (index, value) { tab = value.split(','); geocodeAddress(tab[0], tab[1], geocoder, map); }); } } function geocodeAddress(ville, cp, geocoder, resultsMap) { var address = ville + ',' + cp; geocoder.geocode({ 'address': address }, function (results, status) { if (status === google.maps.GeocoderStatus.OK) { var image = { url: '/ui/img/marker2.png' }; var marker = new google.maps.Marker({ icon: image , map: resultsMap , position: results[0].geometry.location , cp: cp }); marker.addListener('click', function () { var filterValue = '.cp_' + $(this).attr('cp'); resultsMap.setCenter($(this).attr('position')); resultsMap.setZoom(9); $('#bloc_affichage').isotope({ filter: filterValue }); }); } else if (status === google.maps.GeocoderStatus.OVER_QUERY_LIMIT) { setTimeout(function () { geocodeAddress(ville, cp, geocoder, resultsMap); }, 250); } else {} }); } function clearListCookies() { var cookies = document.cookie.split(";"); for (var i = 0; i < cookies.length; i++) { var spcook = cookies[i].split("="); deleteCookie(spcook[0]); } function deleteCookie(cookiename) { var d = new Date(); d.setDate(d.getDate() - 1); var expires = ";expires=" + d; var name = cookiename; var value = ""; document.cookie = name + "=" + value + expires + "; path=/"; } } setTimeout(clearListCookies(), 100);