placemark.events.add('click', function (e) {
// Получаем координаты пина
let coordinates = placemark.geometry.getCoordinates();
// Открываем баллун с содержимым
map.balloon.open(coordinates, {
contentHeader: placemark.properties.get('balloonContentHeader'),
contentBody: placemark.properties.get('balloonContentBody'),
contentFooter: placemark.properties.get('balloonContentFooter')
});
});