超图FAQ: 标绘feature转json:
SuperMap.Plot.PlottingUtil.toJSON(feature.geometry.getSymbolData());
json转标绘feature:
var jsonObj=JSON.parse(jsonString);
SuperMap.Geometry.PlottingGeometry.createFeature(libID,code,null,{symbolData:jsonObj,layer:plottingLayer});
其中,libID和code可以从feature.geometry获取plottingLayer为将要添加这个Feature的标绘图层