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?