Example #1
0
 public void SetGeometry(EnumGeometryType type, List <Vertex> vertices)
 {
     this.Geometry = new MapFeatureGeometry(type, vertices);
 }
Example #2
0
 public MapFeature(string fid, MapFeatureGeometry geometry)
 {
     this.FID        = fid;
     this.Attributes = new MapFeatureAttributes(new Dictionary <string, string>());
     this.Geometry   = geometry;
 }
Example #3
0
 public MapFeature(string fid, MapFeatureAttributes attributes, MapFeatureGeometry geometry)
 {
     this.FID        = fid;
     this.Attributes = attributes;
     this.Geometry   = geometry;
 }
Example #4
0
 public MapFeature(string fid)
 {
     this.FID        = fid;
     this.Attributes = new MapFeatureAttributes(new Dictionary <string, string>());
     this.Geometry   = new MapFeatureGeometry(EnumGeometryType.Polygon);
 }