Back to Marketplace

Post a New Ad

Click to upload images or drag and drop

// Function to show detailed listing view with image gallery and zoom function showListingDetail(listingId) { const listing = window.listingsData.find(item => item.id === listingId); if (!listing) return; // Use only the current listing's image instead of mixing with other images // In a real app, each listing would have its own images array const images = [listing.image]; // If listing has additional images property, use those instead if (listing.additionalImages && Array.isArray(listing.additionalImages)) { images.push(...listing.additionalImages); } // Rest of the function remains the same... }