Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
The code is very short and not complicated.
ymaps.ready(function () {
var myMap = new ymaps.Map('map', {
center: [55.751574, 37.573856],
zoom: 10
}, {
searchControlProvider: 'yandex#search'
}),
myPlacemark = new ymaps.Placemark([55.661574, 37.573856], {
hintContent: 'Подсказка',
balloonContent: 'Содержание'
}, {
// Опции.
// Необходимо указать данный тип макета.
iconLayout: 'default#image',
// Своё изображение иконки метки.
iconImageHref: 'marker.png',
// Размеры метки.
iconImageSize: [20, 28],
// Смещение левого верхнего угла иконки относительно
// её "ножки" (точки привязки).
iconImageOffset: [-10, -28]
});
myMap.geoObjects.add(myPlacemark);
});
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question