Advertisement
Guest User

Untitled

a guest
Apr 26th, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script type="text/javascript">
  2.     var point1 = '<br />' + '<div style="font-size:14px;padding-bottom:5px">г. Москва</div>' + '<div>Центральный магазин Fightwear.ru (Шоу-рум):</div>' + '<div>ул. Дубининская, дом 80M</div>' + '<div>тел.: +7 (499) 499-8177</div><br />' + '<div><img src="/images/news/DSC02178.jpg" width="300"></div>';
  3.  
  4.     ymaps.ready(function() {
  5.         var map = new ymaps.Map("ymaps-Contactmap", {
  6.             center: [80.3171, 46.7908],
  7.             zoom: 2,
  8.             behaviors: ["default", ],
  9.             type: "yandex#map"
  10.         }, {
  11.             geoObjectHint: false
  12.         });
  13.         map.controls.add("zoomControl").add("mapTools").add(new ymaps.control.TypeSelector(["yandex#map", "yandex#satellite", "yandex#hybrid"]));
  14.         map.geoObjects.add(new ymaps.Placemark([37.6339, 55.7184], {
  15.             balloonContentHeader: '<strong>Fightwear<br></b>',
  16.             balloonContentBody: point1,
  17.             balloonContentFooter: ''
  18.         }, {
  19.             iconImageHref: 'http://fightwear.ru/images/map_marker.png',
  20.             iconImageSize: [50, 53],
  21.             iconImageOffset: [0, -30]
  22.         }))
  23.     });
  24. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement