首页 / 浏览问题 / 云GIS / 问题详情
js开发is not a constructor
8EXP 2020年04月22日

使用产品:iserver 10i  操作系统:win10 x64
问题详细描述:添加完以下代码之后报错:Uncaught TypeError: SuperMap.Geometry.Vector is not a constructor

var line=new SuperMap.Geometry.LineString(points);
        var f=new SuperMap.Geometry.Vector;
        f.geometry=line;
        f.style = {
            strokeColor: "#304DBE",
            strokeWidth: 2.5,
            pointerEvents: "visiblePainted",
            fillColor: "#304DBE",
            fillOpacity: 1
        }
        lineResultLayer.addFeatures(f);

1个回答

您好,您的问题出在您定义类出错了,如果您想构造线您可以参考https://iclient.supermap.io/examples/classic/editor.html#analysis_bufferAnalyst这里面构造线的例子

3,357EXP 2020年04月22日
...