angular-cesium
angular-cesium copied to clipboard
Material property in polylineProps interface inside RectanglesEditorOptions won't accept Cesium.Material()
Hey, As you know, material property is a function that returns the material of polyline lines. my code is: rectanglesEditorService.create({ polylineProps: { material: () => new Cesium.PolylineDashProperty( color: Cesium.Color.RED) }});
But nothing change. note that if i put outline color inside rectangleProps it's work. also, i tried with new Cesium.Material({ fabric: { type: 'PolylineDash', uniforms: { color: Cesium.Color.RED dashPattern: 'someDashPattern '} }) it doesn't work either.