get chosen location of user and send it
map.addListener('click', (e) => {
let marker = {
position: {
lat: e.latLng.lat(),
lng: e.latLng.lng(),
}
};
listRef.push(marker);
});