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
ymaps.ready(init);
function init() {
var myMap = new ymaps.Map("map", {
center: [56.14822654594537, 40.35968193879493],
zoom: 15,
controls: []
}, {
searchControlProvider: 'yandex#search'
}),
// Создаем геообъект с типом геометрии "Точка".
myGeoObject = new ymaps.GeoObject({
// Описание геометрии.
geometry: {
type: "Point",
coordinates: [56.147865709609, 40.35978386273748]
}
});
myMap.geoObjects
.add(myGeoObject)
.add(new ymaps.Placemark([56.147865709609, 40.35978386273748], {
balloonContent: '<strong>Ключ 585</strong><br> 600014, г. Владимир, ул. Лакина, д.4'
}, {
preset: 'islands#icon',
iconColor: '#C70C01'
}));
myMap.behaviors.disable('scrollZoom');
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question