<div id="map"></div>
<style> /*Изменение цвета Яндекс карты в zero-блоке на Tilda: https://vladislav-land.ru/ymapcolor*/ #map .ymaps-2-1-79-ground-pane { filter: hue-rotate(90deg); -ms-filter: hue-rotate(90deg); -webkit-filter: hue-rotate(90deg); -moz-filter: hue-rotate(90deg); -o-filter: hue-rotate(90deg); } .tn-elem__4346096441649723484272 { mix-blend-mode: multiply; background: rgba(255, 0, 0, 0.5); display: flex !important; pointer-events: none; } </style>
<script src="https://api-maps.yandex.ru/2.1/?lang=ru_RU" type="text/javascript"></script> <style> /*Изменение цвета Яндекс карты в zero-блоке на Tilda: https://vladislav-land.ru/ymapcolor*/ #map { width: 100%; height:800px; padding: 0; margin: 0; } </style> <script> ymaps.ready(function () { var myMap = new ymaps.Map('map', { center: [53.902284, 27.561831], zoom: 11 }, { searchControlProvider: 'yandex#search' }), MyIconContentLayout = ymaps.templateLayoutFactory.createClass( '<div style="color: #FFFFFF; font-weight: medium;">$[properties.iconContent]</div>' ), myPlacemarkWithContent = new ymaps.Placemark([53.902284, 27.561831], { hintContent: 'город Минск' }, { iconLayout: 'default#imageWithContent', iconImageHref: 'https://static.tildacdn.com/tild3066-3565-4363-b939-313335623561/photo.png', iconImageSize: [55, 55], iconImageOffset: [0, 0], iconContentOffset: [15, 15], iconContentLayout: MyIconContentLayout }); myMap.geoObjects .add(myPlacemarkWithContent); }); </script>