The Emergency Plumbing Map in Melbourne

var map = new google.maps.Map(document.getElementById("emergency-plumbing-map"), { zoom: 4, center: {lat: -37.7833, lng: 144.9667}, styles: [ { "featureType": "water", "stylers": [{color : "#32CD32"}], "description": "Emergency Plumbing Services" }, { "featureType": "road", "stylers": [{color: '#666'}], "description": "Roads and Highways" } ] }); // Add markers to the map for emergency plumbing services var markers = []; for (var i = 0; i <5; i++) { var marker = new google.maps.Marker({ position: {lat: -37.7833 + i * 10, lng: 144.9667}, title: "Emergency Plumbing Service", map: map, icon: new google.maps.Icon({ iconUrl: 'icon.png', sizes: '16px 48px' }) }); markers.push(marker); } // Add a popup for each marker function addPopup(marker) { var content = '

Emergency Plumbing Service

Phone Number: 123-456-7890

Email: example@example.com

Address: 123 Main St, Melbourne VIC 3000

Opening Hours: Mon-Fri: 8am-5pm Sat-Sun: 9am-3pm

'; var popup = new google.maps.InfoWindow(content, marker); marker.addListener('click', function() {popup.setContent(content);}); } // Add markers and popups to the map for (var i = 0; i https://www.google.com/maps/d/viewer?mid=1fFBGWQNNySuOheJ135igLDnsWncd0fVf