In the documentation there is an example of obtaining the coordinates of the center of the map, for example, you can do this:
map.action.events.add('tickcomplete', function (e) { const tick = e.get('tick'); const coords = (map.options .get('projection') .fromGlobalPixels(tick.globalPixelCenter, tick.zoom));
Is it possible to get the address of the center of the card in a similar way?
Another question - I did not find in the documentation descriptions fromGlobalPixels and globalPixelCenter, tell me a reference if there is a description.