ParseQueryTWhereWithinGeoBox Method Parse
Add a constraint to the query that requires a particular key's coordinates to be contained within a given rectangular geographic bounding box.

Namespace: Parse
Assembly: Parse (in Parse.dll) Version: 1.5.5.0 (1.5.5.0)
Syntax

public ParseQuery<T> WhereWithinGeoBox(
	string key,
	ParseGeoPoint southwest,
	ParseGeoPoint northeast
)

Parameters

key
Type: SystemString
The key to be constrained.
southwest
Type: ParseParseGeoPoint
The lower-left inclusive corner of the box.
northeast
Type: ParseParseGeoPoint
The upper-right inclusive corner of the box.

Return Value

Type: ParseQueryT
A new query with the additional constraint.
See Also

Reference