Whenever I am dragging my marker, the getPosition is being console logged every 0.1s while the element is being dragged. How can I make it only console log when it's being stopped dragged? I want the same effect as .getRadius() works, it only console logs it when the radius is being changed once.
marker.Circle.addListener('center_changed', function() {
console.log(marker.getPosition())
})