Create a new geocode sort key that specifies a sort on a geocode property, the reference geocode and the order with which to sort with regard to that property.

Namespace: Endeca.Navigation
Assembly: Endeca.Navigation (in Endeca.Navigation.dll) Version: 6.2.0.0 (6.2.2.8614)

Syntax

C#
public ERecSortKey(
	string name,
	bool isAscending,
	double lat,
	double lon
)
Visual Basic
Public Sub New ( _
	name As String, _
	isAscending As Boolean, _
	lat As Double, _
	lon As Double _
)
Visual C++
public:
ERecSortKey(
	String^ name, 
	bool isAscending, 
	double lat, 
	double lon
)

Parameters

name
Type: System..::..String
The name to assign to the sort key.
isAscending
Type: System..::..Boolean
A bool specifying whether this sort key is ascending.
lat
Type: System..::..Double
The latitude of the reference point for this geocode sort key.
lon
Type: System..::..Double
The longitude of the reference point for this geocode sort key.

See Also