Whether you have any questions, would like to make an appointment with us, or just to have a chat about our products and your future business plans, please do not hesitate to pick up the phone, drop us an email, or send us a message via WhatsApp.
Fill in the contact form and we'll be in touch as soon as possible
Where you can find us
Unit 2, Frilsham Home Farm,
Yattendon,
Thatcham,
RG18 0XT
Or find us online...
keyboard_arrow_up
var mapElement = document.getElementById('map');
// Create the Google Map using our element and options defined above
var map = new google.maps.Map(mapElement, mapOptions);
var icon = '/assets/images/map-marker.svg';
var marker = new google.maps.Marker({
animation: google.maps.Animation.DROP,
position: myLatLng,
map: map,
icon: icon
});
marker.addListener('click', function() {
infowindow.open(map, marker);
});
}