Commercial Agents in West Sussex, England

Find Commercial Agents in West Sussex, England
42 results
Christie & Co

Childcare

Sales Commercial
1 active listing in West Sussex, England
83 total
Whitefriars House, 6 Carmelite Street, London, EC4Y 0BS
View Profile
Cinch Self Storage

Cinch Self Storage

Sales Commercial
1 active listing in West Sussex, England
3 total
184 Shepherds Bush Road, London, W6 7NL
Commercial List

Covering Nationwide

Sales Commercial
1 active listing in West Sussex, England
31 total
Lindpet House, 5 Market Place, Grantham, NG31 6LJ
Cushman & Wakefield LLP

London & South East - Industrial

Sales Commercial
1 active listing in West Sussex, England
7 total
43/45 Portman Square, London, W1H 6LY
Everard Cole LTD

Cambridge

Sales Commercial
1 active listing in West Sussex, England
16 total
The Quad Cambridge No. 9 Journey Campus Castle Park Cambridge CB3 0AX
View Profile
Flude Property Consultants

Portsmouth

Sales Commercial
1 active listing in West Sussex, England
35 total
Regus, 1000 Lakeside North Harbour, Western Road, Portsmouth, PO6 3EN
View Profile
Fox Lloyd Jones

Leeds

Sales Commercial
1 active listing in West Sussex, England
84 total
Carlton Tower, 34 St. Pauls Street, Leeds, LS1 2QB
Galaxy Real Estate Limited

Hayes

Sales Commercial
1 active listing in West Sussex, England
63 total
Galaxy Real Estate HQ, 1-3 Uxbridge Road Hayes UB4 0JN
View Profile
Jll

South East - Offices

Sales Commercial
1 active listing in West Sussex, England
28 total
30 Warwick Street, London, W1B 5NH
Lambert Smith Hampton

Auctions

Sales Commercial
1 active listing in West Sussex, England
60 total
UK House, 180 Oxford Street, London, W1D 1NN
Shw

West Sussex Coast

Sales Commercial
1 active listing in West Sussex, England
3 Liverpool Gardens, Worthing, BN11 1TF
Shw

South London

Sales Commercial
1 active listing in West Sussex, England
24 total
Corinthian House, 17 Lansdowne Road, Croydon, CR0 2BX
View Profile
Page 2 of 2
initializeAllPremierCards() }); // Load detailed stats function function loadDetailedStats() { const button = document.getElementById('load-more-stats'); const statsContainer = document.getElementById('detailed-stats'); if (statsContainer.classList.contains('hidden')) { // Show loading state button.innerHTML = ` Loading... `; // Make AJAX call for detailed stats const location = 'West Sussex, England'; const agentType = 'commercial'; fetch(`/api/agents/detailed-stats?location=${encodeURIComponent(location)}&type=${agentType}`) .then(response => response.json()) .then(data => { // Build detailed stats HTML let statsHtml = '
'; // Property types breakdown if (data.propertyTypes && Object.keys(data.propertyTypes).length > 0) { statsHtml += `
Property Types
`; for (const [type, count] of Object.entries(data.propertyTypes)) { const percentage = Math.round((count / data.totalProperties) * 100); statsHtml += `
${type}: ${count.toLocaleString()} (${percentage}%)
`; } statsHtml += '
'; } // Price ranges if (data.priceRanges) { statsHtml += `
Price Ranges
Avg Sale Price: £${data.priceRanges.avgSalePrice?.toLocaleString() || 'N/A'}
Avg Rent PCM: £${data.priceRanges.avgRentPrice?.toLocaleString() || 'N/A'}
`; } // Top performing agents if (data.topAgents && data.topAgents.length > 0) { statsHtml += `
Top Agents
`; data.topAgents.slice(0, 3).forEach(agent => { statsHtml += `
${agent.name}: ${agent.property_count} props
`; }); statsHtml += '
'; } statsHtml += '
'; // Show stats statsContainer.innerHTML = statsHtml; statsContainer.classList.remove('hidden'); // Update button button.innerHTML = ` Hide Insights `; }) .catch(error => { // If API fails, show a simple message instead of dumping all agent data statsContainer.innerHTML = '
Unable to load detailed insights
'; statsContainer.classList.remove('hidden'); button.innerHTML = ` Hide Insights `; }); } else { // Hide stats statsContainer.classList.add('hidden'); button.innerHTML = ` Load Detailed Insights `; } } // Open agent map function function openAgentMap(locationSlug) { // Use the floating view toggle button const mapBtn = document.getElementById('agent-view-map'); if (mapBtn) { mapBtn.click(); } else { // Fallback to old button const oldMapBtn = document.getElementById('view-map-btn'); if (oldMapBtn) { oldMapBtn.click(); } else { // Last resort - open map page window.location.href = `/agents/${locationSlug}/map`; } } }