adding images to geojson popups

viewer.dataSources.add(Cesium.GeoJsonDataSource.load(‘villains.geojson’, {

stroke: Cesium.Color.HOTPINK,

fill: Cesium.Color.PINK,

strokeWidth: 3,

markerSymbol: ‘park’,

clampToGround: true

}));

``

If s it possible to add an image to a popup for an entity created from a GeoJSON? Mapbox’s documentation says it’s possible to do it by adding an tag to the description value in the GeoJSON file, but every time I do that in Cesium, the markers disappear.
, , and other tags work fine. Here’s the code I’m using:

and here’s the contents of villains.geojson

{

“type”: “FeatureCollection”,

“features”: [

{

“type”: “Feature”,

“geometry”: {

“type”: “Point”,

“coordinates”: [ -70.935078,44.556036 ]

},

“properties”: {

“title”:“The Riddler”,

“description”:“

here is a description

and another line”

}

},

{

“type”: “Feature”,

“geometry”: {

“type”: “Point”,

“coordinates”: [ -70.869061,44.572023 ]

},

“properties”: {

“title”:“Felonius Gru”,

“description”:“This is a second description”

}

}

]

}

``

Should add: I’m more than open to alternative ways of accomplishing this.

So basically just a small mistake you dont add the “” on the src replace the line
“description”:“here is a description

and another line”

with

“description”:"<img src=https://cdn.glitch.com/10640633-361f-42a2-8fba-0f7cdac7699a%2Fnoun_Mountains_155902.png?v=1567054332868>here is a description

and another line"

and you are good to go here is this code working

Worked like a charm. Thank you!