Exemplo n.º 1
0
 public tsPolygon(tsContentTo Adoc)
     : base(Adoc)
 {
     Capt = "Polygon";
     frings = new List<string>();
 }
Exemplo n.º 2
0
 public tsPolyline(tsContentTo Adoc)
     : base(Adoc)
 {
     Capt = "Polyline";
     startPoint = null;
     endPoint = null;
     finternalPoints = new List<Point2D>();
 }
Exemplo n.º 3
0
 public tsObject(tsContentTo Adoc)
 {
     fdoc = Adoc; fcount = 0; Key = "";
 }
Exemplo n.º 4
0
 public tsPoint(tsContentTo Adoc)
     : base(Adoc)
 {
     Capt = "Point";
 }
Exemplo n.º 5
0
 public jsonContent(jsonListener Aparent,
                    tsContentTo Adoc) : base(Aparent)
 {
     fData = new jsonData(this,Adoc);
     fdoc = Adoc;
 }
Exemplo n.º 6
0
        public tsFeature(tsContentTo Adoc)
            : base(Adoc)
        {
            Capt = "Feature";
            guid = null;
            code = null;
            attrs = null;

            fGeometry = new List<Geometry>();

            fRelations = new List<Relation>();

            fcodes = new SortedList<string, int>();
            fcounts = new List<int>();
        }
Exemplo n.º 7
0
 public jsonFeature(jsonListener Aparent,
                     tsContentTo doc) : base(Aparent) 
 {
     fe = new tsFeature(doc);
     fIsGeometry = false;
     fIsRelations = false;
     fgeometry = new Geometry(1, 0, "");
     frelation = new Relation("", "","");
 }
Exemplo n.º 8
0
 public jsonPolygon(jsonListener Aparent,
                     tsContentTo doc)
     : base(Aparent)
 {
     s = new tsPolygon(doc);
 }
Exemplo n.º 9
0
 public jsonPolyline(jsonListener Aparent,
                     tsContentTo doc) : base(Aparent) 
 {
     c = new tsPolyline(doc);
 }
Exemplo n.º 10
0
 public jsonPoint(jsonListener Aparent,
                  tsContentTo doc) : base(Aparent) 
 {
     p = new tsPoint(doc);
 }
Exemplo n.º 11
0
 public jsonData(jsonListener Aparent,
                 tsContentTo doc) : base(Aparent)
 {
     fPoint = new jsonPoint(this, doc);
     fPolyline = new jsonPolyline(this, doc);
     fPolygon = new jsonPolygon(this, doc);
     fFeature = new jsonFeature(this, doc);
 }