ArcObjects returns the error message, "Cannot convert polylines or polygons with curves to JSON format" when converting a polyline or a polygon with curves into a JSON object.
上次发布: April 16, 2020ArcObjects SDK
漏洞 ID 编号
BUG-000129956
已提交
April 7, 2020
上次修改时间
June 5, 2024
适用范围
ArcObjects SDK
找到的版本
10.8
操作系统
Windows OS
操作系统版本
10.0 64 Bit
状态
Will Not Be Addressed
开发团队已考虑过该问题或请求,并决定不会解决该问题。 问题的“其他信息”部分可能包含进一步说明。
附加信息
In order to write the geometry to JSON, it is necessary to set the property of JSON to be able to write curve. The code is as below:
IPropertySet pPS = new PropertySet();
pPS.SetProperty("writeCurves", true));
IJSONSerializer(convertGeometry).InitSerializer(jsonWriter, pPS);
Then, the rest of the original code works.