setFeatureFormat = (point, icon="circle", iconImageSize=DEFAULT_ICON_IMAGE_SIZE) => { const { lat, lon, offers } = point; const ids = offers.map(offer => offer.id); return { type: 'Feature', id: ids, geometry: { type: 'Point', coordinates: [lat, lon], }, properties: { balloonContent: "Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΠΌΠΎΠ΅ Π±Π°Π»ΡƒΠ½Π°", iconContent: '11', hintContent: "ВСкст подсказки" }, options: { iconLayout: 'default#image', iconImageHref: `/src/PriceAnalize/OfferAnalyticsMap/img/${icon}.svg`, iconImageSize } } }; 

I use custom icons to display points on the map, I use objectManager to display, even if I remove the property for a custom icon, the number in the marker is still not displayed. What could be the problem?

    1 answer 1

    default # image is a version of the layout without content. Use default # imageWithContent - it’s with content