Hi there, is it possible to ad a gears layer to the google map added from the elements?
the script I need added is this:
function initMap() {
var map = new google.maps.Map(document.getElementById(‘map’), {
zoom: 10,
center: {lat: 49.496675, lng: -102.65625}
});
var georssLayer = new google.maps.KmlLayer({
url: ‘https://eur.inreach.garmin.com/Feed/Share/pointtopoint’
});
georssLayer.setMap(map);
}