首页 / 浏览问题 / 三维GIS / 问题详情
请问三维场景的线怎么配成一个个箭头显示?
6EXP 2021年05月17日
需求:

矢量图层是三维线图层

效果想要一根根线在三维场景显示为一个个箭头,箭头最好是立体的,但扁平也行

需要用iserver发布到三维服务,最终在浏览器用webgl方式看

1个回答

您好,您可以在idesktop中针对三维线缓存设置特效效果——带箭头。也可以在前端中设置线的样式为PolylineArrowMaterialProperty,如

     var purpleArrow = viewer.entities.add({
            name : 'Purple straight arrow at height',
            polyline : {
                positions : Cesium.Cartesian3.fromDegreesArrayHeights([-75, 43, 500000,
                                                                    -125, 43, 500000]),
                width : 50,
                followSurface : false,
                material : new Cesium.PolylineArrowMaterialProperty(Cesium.Color.PURPLE)
            }
        });参考范例http://support.supermap.com.cn:8090/webgl/examples/webgl/editor.html#Polyline

1,545EXP 2021年05月18日
...