首页 / 浏览问题 / WebGIS / 问题详情
使用面数据集裁剪等值线
43EXP 2021年09月07日

iclient for js 如何使用面数据集裁剪等值线,   clipParam这样设置不行

surfaceAnalystParameters = new SuperMap.DatasetSurfaceAnalystParameters({
            extractParameter: new SuperMap.SurfaceAnalystParametersSetting({
                clipParam: new SuperMap.ClipParameter({
                    clipDatasetName:"ChinaRegion",
                    clipDatasourceName:"China",
                    isClipInRegion:true,
                    isExactClip:true
                }),
                datumValue: 1,
                interval: 1,
                resampleTolerance: 0,
                smoothMethod: SuperMap.SmoothMethod.BSPLINE,
                smoothness: 2
            }),

1个回答

您好,您这样设置不正确,SurfaceAnalystParametersSetting中没有clipParam这个参数,只有clipRegion这个参数,不能设置数据集,需要是一个面对象
1,000EXP 2021年09月07日
您好,那裁剪是在SurfaceAnalystParametersSetting之后进行吗?   面对象是什么呢?    十分感谢!
...