获取要素的折点
public static List<IPoint> GetPointsFromFeature(IGeometry geometry)
{
//IPolygon pPolygon = new PolylineClass();
List<IPoint> li = new List<IPoint>();
if (geometry != null)
{
IPointCollection pPointCollection = geometry as IPointCollection;
for (int i = 0; i < pPointCollection.PointCount; i++)
{
li.Add(pPointCollection.get_Point(i));
}
}
return li;
}

浙公网安备 33010602011771号