О нас
Разработчикам
Заметки
Переводчик
Транслитератор
Сравнить текст
Генератор пароля
Ip и информация
Декодировать JSON
Локация
О нас
Разработчикам
Заметки
Переводчик
Транслитератор
Сравнить текст
Генератор пароля
Ip и информация
Декодировать JSON
Локация
Яндекс карты Api JS
us.content
<!-- Яндекс карта по API --> <div id="map" style="width: 800px; height: 400px"></div> <script src="//api-maps.yandex.ru/2.1/?lang=ru_RU"></script> <script> ymaps.ready(init) var myMap, myPlacemark1, myPlacemark2 // Для второй метки на карте function init() { var mark = [55.89273306885153,37.664248999999955], center = [55.890502319030816,37.661126908706635], zoom = 15 myMap = new ymaps.Map('map', { center: center, zoom: zoom }, { suppressMapOpenBlock: true // Удаляем кнопку Открыть в Яндекс картах }) myMap.controls.remove('geolocationControl'), // Отключение значков myMap.controls.remove('searchControl'), myMap.controls.remove('trafficControl'), myMap.controls.remove('typeSelector'), myMap.controls.remove('fullscreenControl'), myMap.controls.remove('rulerControl') myPlacemark1 = new ymaps.Placemark(mark, { balloonContentHeader: '<span style="color: red;">Однажды1</span>', balloonContentBody: 'В студёную зимнюю пору1', balloonContentFooter: 'Мы пошли в гору1', hintContent: 'Зимние происшествия1' }, { iconLayout: 'default#image', iconImageHref: 'map_icon.png', iconImageSize: [40, 40], iconImageOffset: [-20, -55] }) myPlacemark2 = new ymaps.Placemark([55.72252381, 37.61993951], { // Для второй метки на карте balloonContentHeader: 'Однажды2', balloonContentBody: '<b>Мы пошли в гору2</b><br> Вход открыт', balloonContentFooter: 'Зимние происшествия2', hintContent: 'Зимние происшествия2' }, { preset: 'islands#darkBlueIcon', iconColor: '#777777' }) myMap.geoObjects.add(myPlacemark1) myMap.geoObjects.add(myPlacemark2) // Для второй метки на карте myMap.behaviors.disable('scrollZoom') // Отключение скрола } </script> <!-- https://yandex.ru/map-constructor/location-tool/ Определение координат https://tech.yandex.ru/maps/doc/jsapi/2.1/ref/reference/option.presetStorage-docpage/ Иконки https://tech.yandex.ru/maps/jsbox/2.1/placemark Примеры-->
Список