Хочу чтобы после расчет стоимости доставки, цена автоматически выводилась а не по нажатию балуна. На сколько я понимаю вот код инициализации нажатия на балун
self._route = router.getPaths();
self._route.options.set({ strokeWidth: 5, strokeColor: '0000ffff', opacity: 0.5 });
self._map.geoObjects.add(self._route);
self._start.properties.set('balloonContentBody', startBalloon + message.replace('%s', self.calculate(distance)));
self._finish.properties.set('balloonContentBody', finishBalloon + message.replace('%s', self.calculate(distance)));
Я пытаюсь сделать так
self._route = router.getPaths();
self._route.options.set({ strokeWidth: 5, strokeColor: '0000ffff', opacity: 0.5 });
self._map.geoObjects.add(self._route);
placemark.balloon.open('balloonContentBody', message.replace('%s', self.calculate(distance)));
Но не получается
В чем ошибка