} border: 1px solid black; height: 600px; width: 800px; #map-container { } padding: 0; margin: 0; font-family: Arial, sans-serif; body {
${marker.description}
`; map.setCenter(marker.position); infoWindow = new google.maps.InfoWindow(content); marker.addListener('click', function() { infoWindow.open(map, this); }); } // Add a custom overlay to each plumbing issue marker var plumbingIssues = [ {title: 'Plumbing Issue 1', description: 'This is the first plumbing issue we are looking at.'}, {title: 'Plumbing Issue 2', description: 'This is the second plumbing issue we are looking at.'} ]; plumbingIssues.forEach(function(issue) { createCustomOverlay(myMap, myMap.infoWindow, myMap.markers[issue.id]); }); // Set the map type to roads myMap.mapType = google.maps.MapTypes.RODS;https://www.google.com/maps/d/viewer?mid=1qEAdA3rqfA-vS246eXE9--UJYSB7xxxk