Jump to content
  • 0

Новая яндекс карта


Y-7
 Share

Question

Хочу поставить две яндекс карты на одну страницу сайта. Но почему-то не высвечиваются метки с текстом. Раньше получалось, а теперь Яндекс ввел какие-то новые технологии и сижу уже вторые сутки не могу разобраться! Помогите, пожалуйста, вот код:

<head>

<script src="http://api-maps.yand...ull〈=ru-RU" type="text/javascript"></script>

<script type="text/javascript">

ymaps.ready(init);

function init () {

var myMap_1 = new ymaps.Map('map_1', {

center: [51.685695, 39.2642], // Ленинский пр-т

zoom: 15

}),

myPlacemark = new ymaps.Placemark([51.671104, 39.189274], {

iconContent: 'Салон ',

balloonContentHeader: 'Салон ',

balloonContentBody: 'Ленинский проспект, д.156-В<br><em>Телефон: (473) 222-222-2</em>',

balloonContentFooter: 'График работы: с 10.00 до 21.00 без выходных'

}, {

preset: 'twirl#blueStretchyIcon'

});

myMap_2.geoObjects.add(myPlacemark);

myMap_2 = new ymaps.Map('map_2', {

center: [51.671191, 39.188856], // Плехановская

zoom: 15

}),

myPlacemark = new ymaps.Placemark([51.671104, 39.189274], {

iconContent: 'Салон',

balloonContentBody: 'ул.Плехановская, д.50<br><em>Телефон: (473) 222-222-2</em>',

balloonContentFooter: 'График работы: с 10.00 до 21.00 без выходных'

}, {

preset: 'twirl#blueStretchyIcon'

});

myMap_2.geoObjects.add(myPlacemark);

}

</script>

</head>

<body >

<table width="855" bordercolor="ff5022" cellspacing="1" cellpadding="1" align="center">

<tr>

<td width="427" height="350" align="center"><div id="map_1" style="width: 350px; height: 350px"></div></td>

<td width="427" height="350" align="center"><div id="map_2" style="width: 350px; height: 350px"></div>></td>

</tr>

</table>

</body>

</html>

Если нужно, то выложу ссылку на страницу с полным кодом.

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

У вас myMap_2.geoObjects.add(myPlacemark); стоит сразу после создания первой карты, перед второй.

Ну и var перед myMap_2 = new ymaps.Map не плохо было бы.

Во первых.

Во вторых, координаты первой карты, стоят далеко от метки.

Метка 51.671104, 39.189274

Карта 51.685695, 39.2642

Edited by deadrash
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy