Здравствуйте.
Практически пример из документации. TypeError: ymaps.GeoObject is not a constructor - iconImageOffset: [-15, -20]
Где ошибка?
function init() {
var myMap = new ymaps.Map("map", {
center: [55.724545,37.569692],
zoom: 11
});
myMap.controls.add('zoomC
var coords = [
[56.023, 36.988],
[56.025, 36.981],
[56.020, 36.981],
[56.021, 36.983],
[56.027, 36.987]
]
var myGeoObjects = [];
for (var i = 0; i < coords.length; i++) {
myGeoObjects[i] = new ymaps.GeoObject({
geometry: {
type: "Point",
coordinates: coords[i]
},
properties: {
clusterCaption: 'Город № '+(i+1),
balloonContentBody: 'Название - '+(i+1),
balloonContentHeader: "Балун метки",
balloonContentFooter: "Подвал",
hintContent: "Хинт метки",
iconContent: 'Метка',
balloonContent: 'Меня можно перемещать'
}
},{
preset: 'twirl#redStretchyIcon',
iconImageHref: 'assets/img/metka.png',
iconImageSize: [35, 33],
iconImageOffset: [-15, -20]
});
}
var myClusterer = new ymaps.Clusterer(
{clusterDisableClickZoom: true}
);
myClusterer.add(myGeoObjects);
myMap.geoObjects.add(myClusterer);
}
</script>