Контакты

Контакты

Центральный офис

Адрес

Москва, 1-я Тверская-Ямская улица, 18 (3 этаж)

Телефон

+7 (495) 021-09-55

Режим работы

круглосуточно

E-mail

info@dom-prestarelyh-12.ru

contact

Как попасть на экскурсию:

Если вы хотите попасть на экскурсию в один из выбранных пансионатов для пожилых – позвоните по указанному телефону либо оставьте заявку на сайте. Консультанты по телефону смогут ответить на любые вопросы. Если Вы в первый раз едете в пансионат, консультанты подскажут самый удобный путь и помогут построить самый быстрый маршрут. Экскурсии в пансионат доступны в любое время. На экскурсии Вы собственными глазами сможете увидеть, как устроены пансионаты, оцените сами условия проживания здесь, пообщаетесь с сотрудниками заведения, администрацией и другими жильцами. Мы ждем Вас в гости!

import {LOCATION, markerProps, behaviors} from './common'; // change center to card coordinates LOCATION['center'][0] = 37.591162; LOCATION['center'][1] = 55.773221; window.map = null; main_contacts(); async function main_contacts() { // Waiting for all api elements to be loaded await ymaps3.ready; const {YMap, YMapDefaultSchemeLayer, YMapDefaultFeaturesLayer, YMapMarker, YMapControls} = ymaps3; const {YMapZoomControl} = await ymaps3.import('@yandex/ymaps3-controls@0.0.1'); // Initialize the map map = new YMap( // Pass the link to the HTMLElement of the container document.getElementById('app-contact'), // Pass the map initialization parameters {location: LOCATION, showScaleInCopyrights: true, behaviors: behaviors}, [ // Add a map scheme layer new YMapDefaultSchemeLayer({}), // Add a layer of geo objects to display the markers new YMapDefaultFeaturesLayer({}) ] ); // change center to card coordinates markerProps[0]['coordinates'][0] = 37.591162; markerProps[0]['coordinates'][1] = 55.773221; // Create markers with a custom icon and add them to the map markerProps.forEach((markerProp) => { const markerElement = document.createElement('img'); markerElement.className = 'icon-marker'; markerElement.src = markerProp.iconSrc; map.addChild(new YMapMarker({coordinates: markerProp.coordinates}, markerElement)); }); map.addChild( // Using YMapControls you can change the position of the control new YMapControls({position: 'right'}) // Add the zoom control to the map .addChild(new YMapZoomControl({})) ); }