Class: Couchbase::Cluster::SearchQuery::GeoBoundingBoxQuery
- Inherits:
-
Couchbase::Cluster::SearchQuery
- Object
- Couchbase::Cluster::SearchQuery
- Couchbase::Cluster::SearchQuery::GeoBoundingBoxQuery
- Defined in:
- lib/couchbase/search_options.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/search_options.rb more...
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_json(*args) ⇒ String
Methods inherited from Couchbase::Cluster::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, wildcard
Constructor Details
#initialize(top_left_longitude, top_left_latitude, bottom_right_longitude, bottom_right_latitude) {|self| ... } ⇒ GeoBoundingBoxQuery
Returns a new instance of GeoBoundingBoxQuery.
575 576 577 578 579 580 581 582 |
# File 'lib/couchbase/search_options.rb', line 575 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
564 565 566 |
# File 'lib/couchbase/search_options.rb', line 564 def boost @boost end |
#field ⇒ String
567 568 569 |
# File 'lib/couchbase/search_options.rb', line 567 def field @field end |
Instance Method Details
#to_json(*args) ⇒ String
585 586 587 588 589 590 591 592 593 |
# File 'lib/couchbase/search_options.rb', line 585 def to_json(*args) 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.to_json(*args) end |