For SaleLand / DevelopmentUnverified

Land and Buildings at Woodford, Kettering

function initMap() { var map; var bounds = new google.maps.LatLngBounds(); var mapOptions = { mapTypeId: 'roadmap' }; // Display a map on the web page map = new google.maps.Map(document.getElementById("mapCanvas"), mapOptions); map.setCenter(new google.maps.LatLng(42.325089, -72.641197)); map.setTilt(50); // Multiple markers location, latitude, and longitude var markers = [ ['Land and Buildings at Woodford, Kettering, NY', 52.3843002, -0.5864560], ['Land and Buildings at Upwood Airfield, Ramsey, Huntingdonshire, NY', 52.4431000, -0.1564040], ['Grange Farm Benwick, NY', 52.5115013, -0.0503804], ['Manor Site Farm, Main Street, Great Gidding, NY', 52.4370003, -0.3552680], ['Irchester Grange Farm, Farndish Road, Irchester NN29 7HL, NY', 52.2742996, -0.6412570], ['Stanion Road, Brigstock, NY', 52.4631004, -0.6183270], ['99 Main Street, Yaxley, NY', 52.5130005, -0.2595880], ['Church Farm Yard, NY', 52.4370000, -0.3552680], ['37 Stoke Doyle Road, NY', 52.4784012, -0.4877280], ['Astwick Bury Farm, Astwick, Bedfordshire, SG5 4BH, NY', 52.0316010, -0.2331550] ]; // Info window content var infoWindowContent = [ ['<div class="info_content">' + '<h3>Land and Buildings at Woodford, Kettering</h3>' + '<img src="https://media2.jupix.co.uk/v3/clients/64/properties/385393/IMG_385393_1_large.jpg">' + '<p></p>' + '<p></p>' + '<p>Guide Price: £2,345,000</p>' + '<a href="/property-search/land-and-buildings-at-woodford-kettering/" class="btn small pink">View details</a>' + '</div>'], ['<div class="info_content">' + '<h3>Land and Buildings at Upwood Airfield, Ramsey, Huntingdonshire</h3>' + '<img src="https://media2.jupix.co.uk/v3/clients/64/properties/385321/IMG_385321_1_large.jpg">' + '<p></p>' + '<p></p>' + '<p>Guide Price: £1,500,000</p>' + '<a href="/property-search/land-and-buildings-at-upwood-airfield-ramsey-huntingdonshire/" class="btn small pink">View details</a>' + '</div>'], ['<div class="info_content">' + '<h3>Grange Farm Benwick</h3>' + '<img src="https://media2.jupix.co.uk/v3/clients/64/properties/385361/IMG_385361_1_large.jpg">' + '<p>4 Bedrooms</p>' + '<p>3 Bathrooms</p>' + '<p>Guide Price: £1,250,000</p>' + '<a href="/property-search/grange-farm-benwick/" class="btn small pink">View details</a>' + '</div>'], ['<div class="info_content">' + '<h3>Manor Site Farm, Main Street, Great Gidding</h3>' + '<img src="https://media2.jupix.co.uk/v3/clients/64/properties/385272/IMG_385272_1_large.jpg">' + '<p></p>' + '<p></p>' + '<p>: £1,000,000</p>' + '<a href="/property-search/manor-site-farm-main-street-great-gidding/" class="btn small pink">View details</a>' + '</div>'], ['<div class="info_content">' + '<h3>Irchester Grange Farm, Farndish Road, Irchester NN29 7HL</h3>' + '<img src="https://media2.jupix.co.uk/v3/clients/64/properties/385336/IMG_385336_3_large.jpg">' + '<p></p>' + '<p></p>' + '<p>: £1,000,000</p>' + '<a href="/property-search/irchester-grange-farm-farndish-road-irchester-nn29-7hl/" class="btn small pink">View details</a>' + '</div>'], ['<div class="info_content">' + '<h3>Stanion Road, Brigstock</h3>' + '<img src="https://media2.jupix.co.uk/v3/clients/64/properties/383931/IMG_383931_54_large.jpg">' + '<p>4 Bedrooms</p>' + '<p>2 Bathrooms</p>' + '<p>Offers In Excess Of: £1,000,000</p>' + '<a href="/property-search/stanion-road-brigstock/" class="btn small pink">View details</a>' + '</div>'], ['<div class="info_content">' + '<h3>99 Main Street, Yaxley</h3>' + '<img src="https://media2.jupix.co.uk/v3/clients/64/properties/385348/IMG_385348_1_large.jpg">' + '<p></p>' + '<p></p>' + '<p>: £750,000</p>' + '<a href="/property-search/99-main-street-yaxley/" class="btn small pink">View details</a>' + '</div>'], ['<div class="info_content">' + '<h3>Church Farm Yard</h3>' + '<img src="https://media2.jupix.co.uk/v3/clients/64/properties/385385/IMG_385385_19_large.jpg">' + '<p></p>' + '<p></p>' + '<p>: £650,000</p>' + '<a href="/property-search/church-farm-yard/" class="btn small pink">View details</a>' + '</div>'], ['<div class="info_content">' + '<h3>37 Stoke Doyle Road</h3>' + '<img src="https://media2.jupix.co.uk/v3/clients/64/properties/385399/IMG_385399_1_large.jpg">' + '<p>4 Bedrooms</p>' + '<p>2 Bathrooms</p>' + '<p>Guide Price: £634,995</p>' + '<a href="/property-search/37-stoke-doyle-road/" class="btn small pink">View details</a>' + '</div>'], ['<div class="info_content">' + '<h3>Astwick Bury Farm, Astwick, Bedfordshire, SG5 4BH</h3>' + '<img src="https://media2.jupix.co.uk/v3/clients/64/properties/385337/IMG_385337_1_large.jpg">' + '<p></p>' + '<p></p>' + '<p>: £600,000</p>' + '<a href="/property-search/astwick-bury-farm-astwick-bedfordshire-sg5-4bh/" class="btn small pink">View details</a>' + '</div>'] ]; // Add multiple markers to map var infoWindow = new google.maps.InfoWindow(), marker, i; // Place each marker on the map for( i = 0; i < markers.length; i++ ) { var position = new google.maps.LatLng(markers[i][1], markers[i][2]); bounds.extend(position); marker = new google.maps.Marker({ position: position, map: map, icon: 'public/resources/themes/bletsoes/images/map-marker.png', title: markers[i][0] }); // Add info window to marker google.maps.event.addListener(marker, 'click', (function(marker, i) { return function() { infoWindow.setContent(infoWindowContent[i][0]); infoWindow.open(map, marker); } })(marker, i)); // Center the map to fit all markers on the screen // map.fitBounds(bounds); map.setCenter(new google.maps.LatLng(52.404356, -0.650061)); } // Set zoom level var boundsListener = google.maps.event.addListener((map), 'bounds_changed', function(event) { this.setZoom(10); google.maps.event.removeListener(boundsListener); }); } // Load initialize function google.maps.event.addDomListener(window, 'load', initMap);, 'load'

CommercialUK

Claim this listing to add your photos

Price
£2,345,000
Listed
Today

Property Description

29 Properties Found Include Sold STC / Under Offer Order by Order by: Price Desc Order by: Price Asc Land and Buildings at Woodford, Kettering Guide Price: £2,345,000 For Sale: Approximately 170.55 acres in total, for a sale as a whole or in up to 4 Lots, situated 1 mile west of Junction 12 of the A14. View details Land and Buildings at Upwood Airfield, Ramsey, Huntingdonshire Guide Price: £1,500,000 For Sale: Land and Buildings at Upwood Airfield, Ramsey, Huntingdonshire In all about 1
Unverified Listing

This listing was sourced from public records and has not been verified by the agent. Claim it free to verify, add photos and receive direct enquiries.

B
Bletsoe Estate Agents

Send Enquiry

All enquiries sent and tracked via CommercialUK

Are you the agent?

Claim this listing to verify it, add your branding and photos, and start receiving direct enquiries.

Claim This Listing Free