Is there a way to make the console log for getPosition only happen when the marker is stopped being dragged, rather than every 0.1 seconds while it's being dragged? Similar to how .getRadius() works - it logs the radius change just once.
https://i.sstatic.net/hv8fG.png
marker.Circle.addListener('center_changed', function() {
console.log(marker.getPosition())
})