const weatherSymbol = {
type: 'picture-marker',
url: base64StringConent,
contentType: 'image/png',
width: '32px',
height: '32px',
yoffset: '24px'
};
Here my requirement is to load images which are received from back-end services (say REST service). Which will receive a base64 decoded string. Can we encode this value and assign to PictureMarkerSymbol for dynamic image generation?