/// <summary> /// Creates a new bounding box filter. /// </summary> public OsmStreamFilterBoundingBox(GeoCoordinateBox box) : base() { if (box == null) { throw new ArgumentNullException("box"); } _box = box; this.Meta.Add("bbox", _box.ToInvariantString()); }