我参数设置:仿照加点的例子:http://support.supermap.com.cn:8090/iserver/iClient/forJavaScript/examples/leaflet/editor.html#02_editFeatures
feature = feature.toGeoJSON();
feature = new SuperMap.Geometry.Polygon(feature.geometry)
console.log("66", feature)
feature.properties = {
POP: 1,
CAPITAL: 'test'
};
var addFeatureParams = new SuperMap.EditFeaturesParameters({
dataSourceName: "World",
dataSetName: "Capitals",
features: feature,
editType: "add",
returnContent: true
});