using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; namespace IronIntel.Contractor.Shape { public sealed class MapPoint { public double Longitude = 0; public double Latitude = 0; } public sealed class MapPoints { private List _Points = new List(); public List Points { get { return _Points; } } } public sealed class Polyline { private List _Parts = new List(); public List Parts { get { return _Parts; } } /// /// 表示extent的左上角 /// public MapPoint TopLeft = null; /// /// 表示extent的右下角 /// public MapPoint BottomRight = null; } public sealed class Polygon { private List _Rings = new List(); public List Rings { get { return _Rings; } } /// /// 表示extent的左上角 /// public MapPoint TopLeft = null; /// /// 表示extent的右下角 /// public MapPoint BottomRight = null; } public sealed class Shape { private List _Points = new List(); private List _Polylines = new List(); private List _Polygones = new List(); public List Points { get { return _Points; } } public List Polylines { get { return _Polylines; } } public List Polygons { get { return _Polygones; } } } public sealed class SimpleShape { private List _Points = new List(); private List _Polylines = new List(); private List _Polygones = new List(); public List Points { get { return _Points; } } public List Polylines { get { return _Polylines; } } public List Polygons { get { return _Polygones; } } public void FromShapeObj(Shape s) { if (s != null) { foreach (var p in s.Points) { Points.AddRange(p.Points); } foreach (var p in s.Polylines) { Polylines.AddRange(p.Parts); } foreach (var p in s.Polygons) { Polygons.AddRange(p.Rings); } } } } }