Class GeoBoundingBoxFilter
Filters geo point values based on a bounding box
Inheritance
GeoBoundingBoxFilter
Namespace: System.Dynamic.ExpandoObject
Syntax
[GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
public class GeoBoundingBoxFilter : FilterBase
Properties
The bottom right corner of the bounding box's geo location (latitude and longitude).
Declaration
[JsonProperty("bottomRight", Required = Required.Always)]
[Required]
public GeoLocation BottomRight { get; set; }
Property Value
The field's name to execute the filter on. It is composed by the field ids of the hierarchy joined with "."
(i.e. personLayer.address.street).
Declaration
[JsonProperty("field", Required = Required.Always)]
[Required]
public string Field { get; set; }
Property Value
The top left corner of the bounding box's geo location (latitude and longitude).
Declaration
[JsonProperty("topLeft", Required = Required.Always)]
[Required]
public GeoLocation TopLeft { get; set; }
Property Value
Methods
Declaration
public static GeoBoundingBoxFilter FromJson(string data)
Parameters
Returns