1.查询对象是三维管线符号化的矢量数据,设置查询结果高亮用的示例“查询服务”的方法:
resulstStyle3D.set_lineColor(new SuperMap.Web.Core.Color(218, 29, 29, 1));
resulstStyle3D.set_fillForeColor(new SuperMap.Web.Core.Color(218, 29, 29, 1));
resulstStyle3D.set_markerColor(new SuperMap.Web.Core.Color(218, 29, 29, 1));
resulstStyle3D.set_lineWidth(5);
resulstStyle3D.set_markerSize(10);
feature3D.set_style3D(resulstStyle3D);
但是没有显示高亮,是不是因为管线实际上是模型符号而不行呢?
2.查询结果定位用一下方法能否实现呢?
feature3Ds = new SuperMap.Web.Core.Feature3Ds();
feature3Ds.add(feature3D);
scene.get_flyingOperator().flyTo(feature3Ds.get_camera());