I am new with deckgl. I want to add some text to my layer (any type of layer) but I'm not able to
Here is my example:
const layer = new PointCloudLayer({
id: 'point-c-layer',
data: [{
position: [39.826168, 21.422510],
normal: [-1, 0, 0],
color: [204, 102, 0],
}],
radiusPixels: 20,
});
What I should add in data array to add my text to this layer?