Estate & Letting Agents in Weymouth, Dorset

Find Estate Agents in Weymouth, Dorset
49 results
Mccarthy & Stone Resales
2 active listings in Weymouth, Dorset, England
1,331 total
100 Holdenhurst Road, Bournemouth, BH8 8AQ
Mowlam Tominey

Dorchester

Sales
2 active listings in Weymouth, Dorset, England
27 total
20 Vespasian Way, Dorchester, Dorset, England, DT1 2RD
Real Estate Bureau

Portland

Sales
2 active listings in Weymouth, Dorset, England
45 total
3 Easton Street, Portland, Dorset, DT5 1BS
View Profile
Savills

Dorset

Sales
2 active listings in Weymouth, Dorset, England
75 total
34 Haven Road, Canford Cliffs, Poole, BH13 7LP
View Profile
Savills Auctions

London

Sales
2 active listings in Weymouth, Dorset, England
388 total
33 Margaret Street London W1G 0JD
Smoothsale

Leeds

Sales
2 active listings in Weymouth, Dorset, England
197 total
First Floor, Limewood House, 2 Limewood Way, Seacroft, Leeds LS14 1AB
View Profile
Anglotown Property Management

Covering Dorset

Sales
1 active listing in Weymouth, Dorset, England
17 total
Unit 2 Inch Arran House, 9 Queen Mother Square, Poundbury, DT1 3BX
View Profile
Auction House

South West

Sales
1 active listing in Weymouth, Dorset, England
75 total
Suite 204B, Second Floor, Studio 5-11, Millbay Road, Plymouth, Devon, PL1 3LF
Churchill Sales & Lettings
1 active listing in Weymouth, Dorset, England
458 total
Churchill House, Parkside, Ringwood, BH24 3SG
View Profile
Danehurst Estate Agents- Christchurch

Dorset & the New Forest

Sales
1 active listing in Weymouth, Dorset, England
25 total
Christchurch
Dorset & Hampshire Park Homes
1 active listing in Weymouth, Dorset, England
114 total
1 Penn Court, Station Road, West Moors, BH22 0JJ
Hive & Partners

South Coast

Sales
1 active listing in Weymouth, Dorset, England
62 total
Unit F1, Arena Business Centre, 9, Nimrod Way, Ferndown BH21 7UH
View Profile
Hull Gregson Hull

Dorchester

Sales
1 active listing in Weymouth, Dorset, England
13 total
173 Bridport Road, Poundbury, Dorchester, DT1 3AH
Maxgate Properties

Dorchester

Sales
1 active listing in Weymouth, Dorset, England
16 total
21 Weymouth Avenue, Dorchester, DT1 1QR
View Profile
Pattinson Estate Agents
1 active listing in Weymouth, Dorset, England
1,097 total
Kingfisher Way Silverlink Business Park Wallsend NE28 9NY
View Profile
Purplebricks

Covering Chester & Wirral

Lettings Sales
1 active listing in Weymouth, Dorset, England
7,979 total
Purplebricks, 146 Freston Road, London, W10 6TR
View Profile
Retirement Homesearch

Central South England

Sales
1 active listing in Weymouth, Dorset, England
698 total
Central South England
Savills

Margaret Street Lettings

Lettings Sales
1 active listing in Weymouth, Dorset, England
62 total
33 Margaret Street, London, W1G 0JD
View Profile
Symonds & Sampson

Dorchester

Sales
1 active listing in Weymouth, Dorset, England
80 total
9 Weymouth Avenue Brewery Square, Dorchester DT1 1QR
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 = 'Weymouth, Dorset'; const agentType = ''; 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`; } } }