Class: Couchbase::SearchQuery::GeoBoundingBoxQuery
- Inherits:
-
Couchbase::SearchQuery
- Object
- Couchbase::SearchQuery
- Couchbase::SearchQuery::GeoBoundingBoxQuery
- Defined in:
- lib/couchbase/search_options.rb,
/code/couchbase-ruby-client/lib/couchbase/search_options.rb
Overview
Finds ‘geopoint` indexed matches in a given bounding box.
Instance Attribute Summary collapse
Instance Method Summary collapse
-
#initialize(top_left_longitude, top_left_latitude, bottom_right_longitude, bottom_right_latitude) {|self| ... } ⇒ GeoBoundingBoxQuery
constructor
A new instance of GeoBoundingBoxQuery.
- #to_h ⇒ Hash<Symbol, #to_json>
Methods inherited from Couchbase::SearchQuery
boolean_field, booleans, conjuncts, date_range, disjuncts, doc_id, geo_bounding_box, geo_distance, geo_polygon, match, match_all, match_none, match_phrase, numeric_range, phrase, prefix, query_string, regexp, term, term_range, #to_json, wildcard
Constructor Details
#initialize(top_left_longitude, top_left_latitude, bottom_right_longitude, bottom_right_latitude) {|self| ... } ⇒ GeoBoundingBoxQuery
Returns a new instance of GeoBoundingBoxQuery.
646 647 648 649 650 651 652 653 |
# File 'lib/couchbase/search_options.rb', line 646 def initialize(top_left_longitude, top_left_latitude, bottom_right_longitude, bottom_right_latitude) super() @top_left_longitude = top_left_longitude @top_left_latitude = top_left_latitude @bottom_right_longitude = bottom_right_longitude @bottom_right_latitude = bottom_right_latitude yield self if block_given? end |
Instance Attribute Details
#boost ⇒ Float
635 636 637 |
# File 'lib/couchbase/search_options.rb', line 635 def boost @boost end |
#field ⇒ String
638 639 640 |
# File 'lib/couchbase/search_options.rb', line 638 def field @field end |
Instance Method Details
#to_h ⇒ Hash<Symbol, #to_json>
656 657 658 659 660 661 662 663 664 |
# File 'lib/couchbase/search_options.rb', line 656 def to_h data = { :top_left => [@top_left_longitude, @top_left_latitude], :bottom_right => [@bottom_right_longitude, @bottom_right_latitude], } data[:boost] = boost if boost data[:field] = field if field data end |