Get In Touch
Want to know more? Or want to book your first lesson? We would love to hear from you!
We Are Available
Mon to Thu : 9am - 8pm
Fri : 9am - 5pm
Sat : 9am - 2pm
Sunday : Off
google.maps.event.addDomListener(window, 'load', init);
function init() {
var mapLocation = new google.maps.LatLng(, );
var mapOptions = {
zoom: 11,
center: mapLocation,
disableDefaultUI: false,
scrollwheel: false,
navigationControl: true,
mapTypeControl: false,
scaleControl: true,
draggable: true,
mapTypeControlOptions: {
mapTypeIds: [google.maps.MapTypeId.ROADMAP, 'roadatlas']},
styles: [{"featureType": "all", "elementType": "geometry.fill", "stylers": [{"weight": "2.00"}]},{"featureType": "all", "elementType": "geometry.stroke", "stylers": [{"color": "#9c9c9c"}]},{"featureType": "all", "elementType": "labels.text", "stylers": [{"visibility": "on"}]},{"featureType": "landscape", "elementType": "all", "stylers": [{"color": "#f2f2f2"}]},{"featureType": "landscape", "elementType": "geometry.fill", "stylers": [{"color": "#ffffff"}]},{"featureType": "landscape.man_made", "elementType": "geometry.fill", "stylers": [{"color": "#ffffff"}]},{"featureType": "poi", "elementType": "all", "stylers": [{"visibility": "off"}]},{"featureType": "road", "elementType": "all", "stylers": [{"saturation": -100},{"lightness": 45}]},{"featureType": "road", "elementType": "geometry.fill", "stylers": [{"color": "#eeeeee"}]},{"featureType": "road", "elementType": "labels.text.fill", "stylers": [{"color": "#7b7b7b"}]},{"featureType": "road", "elementType": "labels.text.stroke", "stylers": [{"color": "#ffffff"}]},{"featureType": "road.highway", "elementType": "all", "stylers": [{"visibility": "simplified"}]},{"featureType": "road.arterial", "elementType": "labels.icon", "stylers": [{"visibility": "off"}]},{"featureType": "transit", "elementType": "all", "stylers": [{"visibility": "off"}]},{"featureType": "water", "elementType": "all", "stylers": [{"color": "#46bcec"},{"visibility": "on"}]},{"featureType": "water", "elementType": "geometry.fill", "stylers": [{"color": "#c8d7d4"}]},{"featureType": "water", "elementType": "labels.text.fill", "stylers": [{"color": "#070707"}]},{"featureType": "water", "elementType": "labels.text.stroke", "stylers": [{"color": "#ffffff"}]}]};
var map = new google.maps.Map(document.getElementById("mapwindow"),
mapOptions);
var contentString =
'
' +
'
Adams Instructor Training
' +
'
Purbeck Way
Tyldesley
Manchester
M29 7EP
' +
' 07788 638 084
' +
' info@adamsinstructortraining.co.uk
' +
'
';
var infowindow = new google.maps.InfoWindow({
content: contentString
});
var marker = new google.maps.Marker({
position: mapLocation,
animation: google.maps.Animation.DROP,
map: map,
title: "Click on marker to see info",
icon: 'https://www.adamsinstructortraining.co.uk/images/marker.png',
maxWidth: 500
});
google.maps.event.addListener(marker, 'click', function() {
infowindow.open(map, marker);
});
var infowindow = new google.maps.InfoWindow();
infowindow.setContent('
Adams Instructor Training
Purbeck Way
Tyldesley
Manchester
M29 7EP
');
infowindow.open(map, marker);
}