You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var viewer = new Cesium.Viewer('cesiumContainer');
var orangePolygon = viewer.entities.add({
name : 'Orange polygon with per-position heights and outline',
polygon : {
hierarchy : Cesium.Cartesian3.fromDegreesArrayHeights([-108.0, 25.0, 100000,
-100.0, 25.0, 100000,
-100.0, 30.0, 100000,
-108.0, 30.0, 300000]),
perPositionHeight : true,
material : Cesium.Color.ORANGE.withAlpha(0.5),
outline : true,
outlineColor : Cesium.Color.BLACK,
extrudedHeight : 100000
}
});
viewer.zoomTo(viewer.entities);
The text was updated successfully, but these errors were encountered:
Vineg
changed the title
Outline breaks when dynamically updating extrudedHeight
Outline breaks with perPositionHeight and extrudedHeight together
May 17, 2018
The text was updated successfully, but these errors were encountered: