How to make, after clicking on a clustered label on the map - the new labels are displayed closer to the center of the map. There is:
map = new ymaps.Map(...); ... objectManager = new ymaps.ObjectManager(...); //Делаю так, но это не по фен-шую objectManager.clusters.events.add('click', function (e) { setTimeout(function () { $('ymaps.ymaps-2-1-60-zoom__minus.ymaps-2-1-60-zoom__button.ymaps-2-1-60-float-button.ymaps-2-1-60-user-selection-none').trigger('click'); },500); }); How to write the construction below to solve this problem? map.setBounds (objectManager.getBounds (), {zoomMargin: 30}); What event of the object manager will bind this construction?