Math.trunc - это то, что вам нужно.
events: {
drop: function() {
document.getElementById('point-temp').value = Math.trunc(this.y);
}
}
html:
<input placeholder="new Temperature" id="point-temp" type="text" class="field" value="">
console.log(Math.trunc(3.2))
console.log(Math.trunc(4.6))
console.log(Math.trunc(7))