<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head> <title>Быстрый старт. Размещение интерактивной карты на странице</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script src="https://api-maps.yandex.ru/2.1/?lang=ru_RU" type="text/javascript"></script> <script type="text/javascript"> ymaps.ready(init); var myMap, myPlacemark; function init(){ myMap = new ymaps.Map("map", { center: [55.820942,37.449590], zoom: 12 }); myPlacemark = new ymaps.Placemark([55.837191,37.453242], { hintContent: 'ТЦ Свобода Мебель', balloonContent: 'ул. Свободы д.29' });myMap.geoObjects.add(myPlacemark); } </script></head><body> <div id="map" style="width: 600px; height: 450px"></div></body></html>