/// <summary>
 /// Initializes a new instance of the <see cref="POIByGeometryRequest" /> class.
 /// </summary>
 /// <param name="Name">Name.</param>
 /// <param name="Type">Type.</param>
 /// <param name="CategoryCode">CategoryCode.</param>
 /// <param name="SicCode">SicCode.</param>
 /// <param name="MaxCandidates">MaxCandidates.</param>
 /// <param name="FuzzyOnName">FuzzyOnName.</param>
 /// <param name="Page">Page.</param>
 /// <param name="Geometry">Geometry.</param>
 /// <param name="GeometryAsText">GeometryAsText.</param>
 public POIByGeometryRequest(string Name = null, string Type = null, string CategoryCode = null, string SicCode = null, string MaxCandidates = null, string FuzzyOnName = null, string Page = null, CommonGeometry Geometry = null, string GeometryAsText = null)
 {
     this.Name           = Name;
     this.Type           = Type;
     this.CategoryCode   = CategoryCode;
     this.SicCode        = SicCode;
     this.MaxCandidates  = MaxCandidates;
     this.FuzzyOnName    = FuzzyOnName;
     this.Page           = Page;
     this.Geometry       = Geometry;
     this.GeometryAsText = GeometryAsText;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ParcelBoundary" /> class.
 /// </summary>
 /// <param name="ObjectId">ObjectId.</param>
 /// <param name="Apn">Apn.</param>
 /// <param name="Pid">Pid.</param>
 /// <param name="Center">Center.</param>
 /// <param name="Countyfips">Countyfips.</param>
 /// <param name="Geometry">Geometry.</param>
 /// <param name="ParcelList">ParcelList.</param>
 /// <param name="AdjacentParcelBoundary">AdjacentParcelBoundary.</param>
 /// <param name="MatchedAddress">MatchedAddress.</param>
 public ParcelBoundary(string ObjectId = null, string Apn = null, string Pid = null, Center Center = null, string Countyfips = null, CommonGeometry Geometry = null, List <Parcel> ParcelList = null, List <ParcelBoundary> AdjacentParcelBoundary = null, MatchedAddress MatchedAddress = null)
 {
     this.ObjectId               = ObjectId;
     this.Apn                    = Apn;
     this.Pid                    = Pid;
     this.Center                 = Center;
     this.Countyfips             = Countyfips;
     this.Geometry               = Geometry;
     this.ParcelList             = ParcelList;
     this.AdjacentParcelBoundary = AdjacentParcelBoundary;
     this.MatchedAddress         = MatchedAddress;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="PoiCountRequest" /> class.
 /// </summary>
 /// <param name="Name">Name.</param>
 /// <param name="Type">Type.</param>
 /// <param name="CategoryCode">CategoryCode.</param>
 /// <param name="SicCode">SicCode.</param>
 /// <param name="FuzzyOnName">FuzzyOnName.</param>
 /// <param name="Geometry">Geometry.</param>
 /// <param name="GeometryAsText">GeometryAsText.</param>
 public PoiCountRequest(string Name = null, string Type = null, string CategoryCode = null, string SicCode = null, string FuzzyOnName = null, CommonGeometry Geometry = null, string GeometryAsText = null)
 {
     this.Name           = Name;
     this.Type           = Type;
     this.CategoryCode   = CategoryCode;
     this.SicCode        = SicCode;
     this.FuzzyOnName    = FuzzyOnName;
     this.Geometry       = Geometry;
     this.GeometryAsText = GeometryAsText;
 }
示例#4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PoiBoundary" /> class.
 /// </summary>
 /// <param name="ObjectId">ObjectId.</param>
 /// <param name="Center">Center.</param>
 /// <param name="Countyfips">Countyfips.</param>
 /// <param name="Geometry">Geometry.</param>
 /// <param name="PoiList">PoiList.</param>
 /// <param name="MatchedAddress">MatchedAddress.</param>
 /// <param name="Id">Id.</param>
 public PoiBoundary(string ObjectId = null, GeoZoneGeometry Center = null, string Countyfips = null, CommonGeometry Geometry = null, List <Poi> PoiList = null, MatchedAddress MatchedAddress = null, string Id = null)
 {
     this.ObjectId       = ObjectId;
     this.Center         = Center;
     this.Countyfips     = Countyfips;
     this.Geometry       = Geometry;
     this.PoiList        = PoiList;
     this.MatchedAddress = MatchedAddress;
     this.Id             = Id;
 }
示例#5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Intersection" /> class.
 /// </summary>
 /// <param name="Distance">Distance.</param>
 /// <param name="DriveTime">DriveTime.</param>
 /// <param name="DriveDistance">DriveDistance.</param>
 /// <param name="Geometry">Geometry.</param>
 /// <param name="Roads">Roads.</param>
 public Intersection(Unit Distance = null, Unit DriveTime = null, Unit DriveDistance = null, CommonGeometry Geometry = null, List <Road> Roads = null)
 {
     this.Distance      = Distance;
     this.DriveTime     = DriveTime;
     this.DriveDistance = DriveDistance;
     this.Geometry      = Geometry;
     this.Roads         = Roads;
 }