There is a marker on the Yandex map, you need to configure it so that when you click on it a description appears, as I understand it is called a balun. But I am an absolute layman in Yandex maps, so I ask for help :)
<script src="http://api-maps.yandex.ru/2.1/?lang=ru_RU" type="text/javascript"></script> <script> ymaps.ready(init); function init(){ var myMap; myMap = new ymaps.Map("map", { center: [51.52, 46.03], zoom: 7, controls: [] }); myMap.behaviors.disable('scrollZoom'); myMap.controls.add("zoomControl", { position: {top: 15, left: 15} }); var myPlacemark = new ymaps.Placemark([51.529731, 46.034944] , {}, { iconLayout: 'default#image', iconImageHref: 'img/yandex-marker.png', iconImageSize: [45, 52], iconImageOffset: [-20, -47] }); myMap.geoObjects.add(myPlacemark); } </script> 

