I want a little guidance, because I haven't found the explanation I need yet.
I'm developing a website on Google App Maker, and I want to use on Google Map Widget a Draggable Marker.
All the info I have found, is like for an external website including HTML and JavaScript libraries. The error is shown when I type:
var marker = new google.maps.Marker({
position: latlon,
map: map,
draggable: true,
title:"Drag me!"
});
"Uncaught TypeError: google.maps.Marker is not a constructor at var marker = new google.maps.Marker ({ (NewScript1: 143) ".
I have tried in client side script, and in server side script.
Question, if I want to use a marker I need to add libraries to appmaker?