Class: Couchbase::SearchQuery::GeoPolygonQuery
- Inherits:
-
Couchbase::SearchQuery
- Object
- Couchbase::SearchQuery
- Couchbase::SearchQuery::GeoPolygonQuery
- Defined in:
- lib/couchbase/search_options.rb,
/code/couchbase-ruby-client/lib/couchbase/search_options.rb
Overview
A search query which allows to match inside a geo polygon.
Instance Attribute Summary collapse
Instance Method Summary collapse
-
#initialize(coordinates) {|self| ... } ⇒ GeoPolygonQuery
constructor
A new instance of GeoPolygonQuery.
- #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(coordinates) {|self| ... } ⇒ GeoPolygonQuery
Returns a new instance of GeoPolygonQuery.
708 709 710 711 712 |
# File 'lib/couchbase/search_options.rb', line 708 def initialize(coordinates) super() @coordinates = coordinates yield self if block_given? end |
Instance Attribute Details
#boost ⇒ Float
700 701 702 |
# File 'lib/couchbase/search_options.rb', line 700 def boost @boost end |
#field ⇒ String
703 704 705 |
# File 'lib/couchbase/search_options.rb', line 703 def field @field end |
Instance Method Details
#to_h ⇒ Hash<Symbol, #to_json>
715 716 717 718 719 720 721 722 |
# File 'lib/couchbase/search_options.rb', line 715 def to_h data = { :polygon_points => @coordinates.map { |coord| [coord.longitude, coord.latitude] }, } data[:boost] = boost if boost data[:field] = field if field data end |