Benny Sutton is 4 hire - just click here

Google Maps Implementation

Here's the hello world version to produce your first Google map

To use Google maps api you first need to sign up here

You then need to get an api key and follow the instructions here

There's very little code involved (see below) which will generate a page like this.

             
                let map;

                function initMap() {
                    map = new google.maps.Map(document.getElementById("map"), {
                        center: { lat: -34.397, lng: 150.644 },
                        zoom: 8,
                    });
                }