Corvid - Retrieve and display multiple Google Map markers from Database

I am trying to display Multiple Map Markers by referencing my Database of project locations (longitude and latitude as numbers) on my Google Map. Is this possible?

I have written the code (s seen below) which retrieves and displays only the first entry of my Database. How can I get it to display all entries? Thanks.

$w("#dataset1").onReady( () => {
 let currentItem = $w("#dataset1").getCurrentItem();
        $w("#googleMaps1").location = {
 "latitude": currentItem.latitude,
 "longitude": currentItem.longitude,
 "description": currentItem.location,
        };
    });

https://www.wix.com/corvid/forum/wix-tips-and-updates/example-multiple-markers-google-maps?ref=producthunt%2F%2F%2F%2F%2F%2F%2F

Can this not be done just using the standard Wix Google Map box?

Has anybody figured this out? The multiple markers example works great but there really need to be an easier way to work with this.