Estate & Letting Agents in Buckland Newton, Dorset

Find Estate Agents in Buckland Newton, Dorset
11 results
Symonds & Sampson

Dorchester

Sales
4 active listings in Buckland Newton, Dorset, England
80 total
9 Weymouth Avenue Brewery Square, Dorchester DT1 1QR
View Profile
Baker Pearson

Weymouth & Portland

Sales
1 active listing in Buckland Newton, Dorset, England
23 total
14b Portland Marina, Weymouth, Dorset, DT5 1DX
View Profile
Gp Weston

Covering the West Country

Sales
1 active listing in Buckland Newton, Dorset, England
10 total
Covering The West Country
Greenslade Taylor Hunt

Dorchester

Lettings Sales
1 active listing in Buckland Newton, Dorset, England
29 total
45 High West Street, Dorchester, DT1 1UT
View Profile
Palmer Snell

Yeovil

Lettings Sales
1 active listing in Buckland Newton, Dorset, England
39 total
16 Princes Street Yeovil Somerset, BA20 1EW
View Profile
Rolfe East

Sherborne

Sales
1 active listing in Buckland Newton, Dorset, England
103 total
80 Cheap Street, Sherborne, DT9 3BJ
View Profile
Savills

Wimborne

Sales
1 active listing in Buckland Newton, Dorset, England
38 total
Wessex House, Priors Walk, East Borough, Wimborne, BH21 1PB
View Profile
Symonds & Sampson

Sturminster Newton

Sales
1 active listing in Buckland Newton, Dorset, England
78 total
Agriculture House, Market Place, Sturminster Newton, DT10 1AR
View Profile
Symonds & Sampson

Poundbury, Weymouth & South Dorset

Sales
1 active listing in Buckland Newton, Dorset, England
79 total
Archpoint House, 7 Queen Mother Square Poundbury, Dorchester, DT1 3BY
View Profile
Woolley & Wallis

Shaftsbury Farm & Rural

Lettings Sales
1 active listing in Buckland Newton, Dorset, England
75 total
Minster House The Commons, Shaftesbury, SP7 8JU
View Profile
Yopa

Nationwide

Sales
1 active listing in Buckland Newton, Dorset, England
7,206 total
Meridian House Wheatfield Way Hinckley LE10 1YG
View Profile
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 = 'Buckland Newton, 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`; } } }