function initialize() { var myLatlng = new google.maps.LatLng(54.520384,-1.504483); var myLatlng2 = new google.maps.LatLng(53.987572,-1.548566); var myLatlng3 = new google.maps.LatLng(53.800470,-1.554255); var myOptions = { zoom: 12, center: myLatlng, mapTypeId: google.maps.MapTypeId.ROADMAP } var myOptions2 = { zoom: 12, center: myLatlng2, mapTypeId: google.maps.MapTypeId.ROADMAP } var myOptions3 = { zoom: 12, center: myLatlng3, mapTypeId: google.maps.MapTypeId.ROADMAP } var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions); var marker = new google.maps.Marker({ position: myLatlng, map: map, title:"Woodlands Hospital, Darlington" }); var map2 = new google.maps.Map(document.getElementById("map_canvas2"), myOptions2); var marker2 = new google.maps.Marker({ position: myLatlng2, map: map2, title:"BMI The Duchy Harrogate, Queens Road, Harrogate, Yorkshire, HG2 0HF" }); var map3 = new google.maps.Map(document.getElementById("map_canvas3"), myOptions3); var marker3 = new google.maps.Marker({ position: myLatlng3, map: map3, title:"The Nuffield at Leeds, 2 Leighton St, Leeds LS1 3EB" }); }