${location.name}
${rating}${location.description}
// Application State let currentFilter = 'all'; let currentSort = 'featured'; let currentView = 'grid'; let currentSearchTerm = ''; let filteredLocations = [...LOCATIONS_DATA]; let map = null; let markers = []; let currentPage = 1; let itemsPerPage = 6; let activeFilters = []; // Initialize the application document.addEventListener('DOMContentLoaded', function() { initializeMap(); renderLocations(); updateResultsCount(); setupSearch(); updatePagination(); showMobileMapToggle(); }); // Show mobile map toggle on smaller screens function showMobileMapToggle() { const toggle = document.getElementById('mobile-map-toggle'); if (window.innerWidth <= 1024) { toggle.style.display = 'flex'; } else { toggle.style.display = 'none'; } } // Handle window resize window.addEventListener('resize', showMobileMapToggle); // Toggle mobile map function toggleMobileMap() { const mapContainer = document.getElementById('map-container'); const isVisible = mapContainer.style.display !== 'none'; if (isVisible) { mapContainer.style.display = 'none'; document.getElementById('mobile-map-toggle').innerHTML = ` Show Map `; } else { mapContainer.style.display = 'block'; document.getElementById('mobile-map-toggle').innerHTML = ` Show Grid `; } } // Initialize Mapbox map function initializeMap() { try { // Use demo token for development mapboxgl.accessToken = 'pk.eyJ1IjoibWFwYm94IiwiYSI6ImNpejY4NXVycTA2emYycXBndHRqcmZ3N3gifQ.rJcFIG214AriISLbB6B5aw'; map = new mapboxgl.Map({ container: 'map', style: 'mapbox://styles/mapbox/light-v11', center: [-2.5, 54.0], // Center of UK zoom: 5.5 }); map.on('load', function() { addMarkersToMap(); }); // Add navigation controls map.addControl(new mapboxgl.NavigationControl(), 'top-right'); } catch (error) { console.warn('Mapbox failed to initialize:', error); // Fallback: show message in map container document.getElementById('map').innerHTML = `
Explore our premium workspace locations across the UK
${location.description.substring(0, 100)}...
From London's financial district to Manchester's innovation quarter, discover enterprise-grade workspace solutions in the UK's most prestigious business locations.
Enterprise-grade workspace solutions designed for ambitious teams and Fortune 500 companies.
Explore our premium workspace locations across the UK
${location.description.substring(0, 100)}...
${location.description}