I have a map, the center is indicated in it, everything is fine on the desktop, but it’s necessary that on the tablet (768px) and on the mobile (320px) the center of the map (center: [55.759456, 37.626789]) was shifted below ..., also changed zoom.
ymaps.ready(function () { var myMap = new ymaps.Map('map', { center: [55.759456, 37.626789], zoom: 12 }, { searchControlProvider: 'yandex#search' }), myPlacemarkWithContent = new ymaps.Placemark([55.753180, 37.646609], { hintContent: '109469, Москва, ул. Братиславская, д. 22', balloonContent: '109469, Москва, ул. Братиславская, д. 22' }, { iconLayout: 'default#imageWithContent', iconImageHref: 'img/map_marker.png', iconImageSize: [57, 70], iconImageOffset: [0, -35], iconContentOffset: [5, 5] }); myPlacemarkWithContentQ = new ymaps.Placemark([55.772616, 37.549178], { hintContent: '' }, { iconLayout: 'default#imageWithContent', iconImageHref: 'img/map_marker.png', iconImageSize: [57, 70], iconImageOffset: [0, -35], iconContentOffset: [5, 5] }); myPlacemarR = new ymaps.Placemark([55.745002, 37.600256], { hintContent: '' }, { iconLayout: 'default#imageWithContent', iconImageHref: 'img/map_marker.png', iconImageSize: [57, 70], iconImageOffset: [0, -35], iconContentOffset: [5, 5] }); myMap.geoObjects .add(myPlacemarkWithContent) .add(myPlacemarR) .add(myPlacemarkWithContentQ); });