Creating a CIMTextSymbol with symbol used to work (In the previous version of arc gis api):
{
type: 'CIMTextSymbol',
fontFamilyName: 'apica-font',
height: size,
horizontalAlignment: 'Center',
symbol: {
type: 'CIMPolygonSymbol',
symbolLayers: [
{
type: 'CIMSolidFill',
enable: true,
color,
},
],
},
billboardMode3D: 'FaceNearPlane',
verticalAlignment: 'Center',
};
Why is it not working anymore? Is there any alternative for visualising 3D text.
Thanks