Hi Guys,
I am trying to embed Cesium into a IE Web Browser Control. Everything works fine I have added the application registry key into Browser Emulation and the GPU Rendering is set to 1.
The only problem I see is that on any drawn entity (polyline,ellipse.. etc) the description appears to be blank with white Background when click on the entity. This only happens in Browser Web Control and NOT in the standard browser.
Has any body came across similar issue???
Thanks.
viewer.entities.add({
id: circleId,
name: title,
description: description,
position: Cesium.Cartesian3.fromDegrees(centreLong, centreLat, centreElev),
ellipse: {
semiMinorAxis: radius,//cesium work unit is metres
semiMajorAxis: radius,
height: centreElev,
material: Cesium.Color.fromRgba(colour).withAlpha(0.5)
}
})