i would like to know please how can i pass some parameters to the labmda function this.func
?
i want to be able to pass three parameters including the event, and display its contents using console.log
code:
this.map.un('pointermove',this.func)
private func = (e)=>{
console.log(e)
}