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