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.

    1 answer 1

    You can get the center of the map using the getCenter method

     map.getCenter() 

    https://tech.yandex.ru/maps/doc/jsapi/2.1/ref/reference/Map-docpage/#method_detail__getCenter

    You can see the methods fromGlobalPixels and globalPixelCenter here: https://tech.yandex.ru/maps/doc/jsapi/2.1/ref/reference/projection.wgs84Mercator-docpage/