Class: Couchbase::Cluster::SearchSort::SearchSortGeoDistance

Inherits:
Couchbase::Cluster::SearchSort show all
Defined in:
lib/couchbase/search_options.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/search_options.rb
more...

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Couchbase::Cluster::SearchSort

field, geo_distance, id, score

Constructor Details

#initialize(field, longitude, latitude) {|| ... } ⇒ SearchSortGeoDistance

Returns a new instance of SearchSortGeoDistance.

Parameters:

  • field (String)

    field name

  • longitude (Float)
  • latitude (Float)

Yield Parameters:

[View source]

1038
1039
1040
1041
1042
1043
1044
# File 'lib/couchbase/search_options.rb', line 1038

def initialize(field, longitude, latitude)
  super()
  @field = field
  @longitude = longitude
  @latitude = latitude
  yield self if block_given?
end

Instance Attribute Details

#descBoolean

Returns if descending order should be applied.

Returns:

  • (Boolean)

    if descending order should be applied


1023
1024
1025
# File 'lib/couchbase/search_options.rb', line 1023

def desc
  @desc
end

#fieldString (readonly)

Returns name of the field to sort by.

Returns:

  • (String)

    name of the field to sort by


1020
1021
1022
# File 'lib/couchbase/search_options.rb', line 1020

def field
  @field
end

#latitudeFloat (readonly)

Returns:

  • (Float)

1029
1030
1031
# File 'lib/couchbase/search_options.rb', line 1029

def latitude
  @latitude
end

#longitudeFloat (readonly)

Returns:

  • (Float)

1026
1027
1028
# File 'lib/couchbase/search_options.rb', line 1026

def longitude
  @longitude
end

#unit:meters, ...

Returns:

  • (:meters, :miles, :centimeters, :millimeters, :kilometers, :nauticalmiles, :feet, :yards, :inch)

1032
1033
1034
# File 'lib/couchbase/search_options.rb', line 1032

def unit
  @unit
end