Class GeoBoundingBoxQuery
This query finds all matches within a given box (identified by the upper left and lower right corner coordinates).
Both coordinate points are required so the server can identify the right bounding box.
Inheritance
GeoBoundingBoxQuery
Assembly: Couchbase.NetClient.dll
Syntax
public class GeoBoundingBoxQuery : SearchQueryBase, ISearchQuery
Methods
|
Edit this page
View Source
AsReadOnly()
Declaration
public GeoBoundingBoxQuery.ReadOnly AsReadOnly()
Returns
|
Edit this page
View Source
BottomRight(double, double)
Declaration
public GeoBoundingBoxQuery BottomRight(double longitude, double latitude)
Parameters
Returns
|
Edit this page
View Source
Deconstruct(out double?, out double?, out double?, out double?, out string)
Declaration
public void Deconstruct(out double? topLeftLongitude, out double? topLeftLatitude, out double? bottomRightLongitude, out double? bottomRightLatitude, out string field)
Parameters
|
Edit this page
View Source
Export()
Gets a JSON object representing this query instance />
Declaration
public override JObject Export()
Returns
Overrides
|
Edit this page
View Source
Field(string)
Declaration
public GeoBoundingBoxQuery Field(string field)
Parameters
Type |
Name |
Description |
string |
field |
|
Returns
|
Edit this page
View Source
TopLeft(double, double)
Declaration
public GeoBoundingBoxQuery TopLeft(double longitude, double latitude)
Parameters
Returns
Implements