Before we start, make sure you have a Google My Maps account. If not, create one at https://myaccount.google.com/.
Login to your Google My Maps account by going to the website and clicking on "My places" (or "Add new place")
Click on the "Create a map" button in the top left corner of the screen.
Choose a map type (e.g. street view, satellite view) and select your location as Melbourne.
Add markers to represent each plumber's business using the "Add marker" button at the bottom of the screen.
Customize your map by adding labels, shapes (e.g. polygons), and other features as needed.
Save and share your custom map with others using the "Share" button at the bottom of the screen.
For more information, check out Google My Maps documentation at https://myaccount.google.com/mymaps/help
// Create a new map
var map = google.maps.Map(document.getElementById('map'), {
center: {lat: 37.7749, lng: -113.8506},
zoom: 12,
styles: [{color: 'red', fillColor: '#FF0000'}]
});
// Add a marker at the specified location
var marker = new google.maps.Marker({
position: {lat: 37.7858, lng: -73.9865},
map: map,
label: 'Plumber's Office'
});
https://www.google.com/maps/d/viewer?mid=1x0RNOoOPHgIVzUO4oKADkczR_3QTVNHD