const outline = new Cesium.GeometryInstance({
geometry: new Cesium.RectangleOutlineGeometry({
rectangle: this.rectangle,
vertexFormat : Cesium.PerInstanceColorAppearance.VERTEX_FORMAT
}),
attributes: {
color: new Cesium.ColorGeometryInstanceAttribute.fromColor(color),
}
});
const outlinePrimitive = this.rectangleCollection.add(new Cesium.Primitive({
geometryInstances: outline,
appearance: new Cesium.PerInstanceColorAppearance({
closed: true,
translucent : false,
renderState : {
depthTest : {
enabled : true
},
lineWidth : Math.min(4.0, this.geoIntViewer.scene.maximumAliasedLineWidth) ===> I made this number bigger and no changes?
}
})
}));