var kml_layer = Cesium.KmlDataSource.load(url);
viewer.dataSources.add(kml_layer);
All of the HTML is stripped out in the description, leaving the infobox unable to render any of it. I have tried just overwriting the description with some HTML, and that renders correctly in the infobox, so it isn't a problem with infobox. The only thing that seems to work is to wrap the description in <![CDATA[]]>, but since I'll be loading the files externally, I don't want/can't do that.
How do I get the KML data loader to not strip out html?
--
You received this message because you are subscribed to the Google Groups "cesium-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cesium-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
So just having the title set with CDATA won't work? Because that isn't working for me currently
Changing that line did work, thank you! I feel that this could be changed through a simple property in the viewer, or some 1 line of code that changes this.