Answer the question
In order to leave comments, you need to log in
Why does Yandex map not display the icon?
Icon display not working, what's the problem?
<div class="map" id="map" style="width: 100%; height: 400px">
</div><!-- map end -->
$(document).ready(function() {
ymaps.ready(init);
var myMap, myPlaceMarket;
function init() {
var map = new ymaps.Map("map", {
center: [55.758635, 37.6338436],
zoom: 17
}),
// Создаем геообъект с типом геометрии "Точка".
myGeoObject = new ymaps.GeoObject({
// Описание геометрии.
geometry: {
type: "Point",
coordinates: [55.758635, 37.6338436]
},
// Свойства.
properties: {
// Контент метки.
iconContent: 'Я тащусь',
hintContent: 'Ну давай уже тащи'
}
}, {
// Опции.
// Иконка метки будет растягиваться под размер ее содержимого.
preset: 'islands#blackStretchyIcon',
// Метку можно перемещать.
draggable: true
}),
myPieChart = new ymaps.Placemark([
55.847, 37.6
], {
// Данные для построения диаграммы.
data: [
{weight: 8, color: '#0E4779'},
{weight: 6, color: '#1E98FF'},
{weight: 4, color: '#82CDFF'}
],
iconCaption: "Диаграмма"
}, {
// Зададим произвольный макет метки.
iconLayout: 'default#pieChart',
// Радиус диаграммы в пикселях.
iconPieChartRadius: 30,
// Радиус центральной части макета.
iconPieChartCoreRadius: 10,
// Стиль заливки центральной части.
iconPieChartCoreFillStyle: '#ffffff',
// Cтиль линий-разделителей секторов и внешней обводки диаграммы.
iconPieChartStrokeStyle: '#ffffff',
// Ширина линий-разделителей секторов и внешней обводки диаграммы.
iconPieChartStrokeWidth: 3,
// Максимальная ширина подписи метки.
iconPieChartCaptionMaxWidth: 200
});
}
});
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: [55.758635, 37.6338436],
zoom: 17
}, {
searchControlProvider: 'yandex#search'
}),
// Создаем геообъект с типом геометрии "Точка".
myGeoObject = new ymaps.GeoObject({
// Описание геометрии.
}),
myPieChart = new ymaps.Placemark([55.758635, 37.6338436], {
balloonContent: 'цвет <strong>красный</strong>'
}, {
preset: 'islands',
iconColor: '#ec312e'
});
myMap.geoObjects
.add(myGeoObject)
.add(myPieChart)
myMap.behaviors.disable('scrollZoom')
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question