I am facing a problem to get the map bounds in Here maps after dragend event. I need the new lat,lng to get some items/points within the new changed viewports. I Just want to get the alternatives of google maps map.getBounds().getNorthEast().lat() when the drag ends.
I have tried these methods but none of them returned the lat,lng position of the Northeast and southwest coordinate.
Heremap.addEventListener('dragend', (ev) => {
const target = ev.target;
// console.log(map.getViewModel().getLookAtData().bounds);
// console.log(map.getBounds());
// console.log(target.getViewPort());
// console.log(target.getBoundingBox());
}, false);