ArcGIS API 3.X can use mouse-move events get the coordinates, how does API 4.X get the coordinates?
// API 3.X
map.on('mouse-move', (evt) => {
let evtMapPoint = evt.mapPoint;
let lastPosition.X = evt.pageX;
let lastPosition.Y = evt.pageY;
}
This is how in 4.x
view.on('pointer-move', (event)=>{
let point = view.toMap({x: event.x, y: event.y});
}
Thank you so much!