superMap 7c:
通过接口转换geometry为gml。
转换方法: Geometry geometry = feature.GetGeometry() ;
string str = geometry.ToXML();
出来结果如下,感觉与标准的格式有差异。
<gml:surfaceProperty>
<gml:Surface>
<gml:patches>
<gml:PolygonPatch>
<gml:exterior>
<gml:LinearRing>
<gml:posList>
82710.353271 99141.306702 0.000000 82710.353271 99174.326721 0.000000 82726.440125 99173.480103 0.000000 82726.440125 99140.460083 0.000000 82710.353271 99141.306702 0.000000
</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:PolygonPatch>
</gml:patches>
</gml:Surface>
</gml:surfaceProperty>