Class: Arelastic::Queries::GeoShape::Polygon

Inherits:
Query show all
Defined in:
lib/arelastic/queries/geo_shape/polygon.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Query

#has_child, #has_parent, #negate, #nested

Methods inherited from Nodes::Node

#==, #convert_to_elastic, #hash, #read_option!

Methods included from Arities::Binary

#binary

Methods included from Arities::Polyadic

#polyadic

Methods included from Arities::Unary

#unary

Constructor Details

#initialize(field, points, options = {}) ⇒ Polygon

Returns a new instance of Polygon.



9
10
11
12
13
# File 'lib/arelastic/queries/geo_shape/polygon.rb', line 9

def initialize(field, points, options = {})
  @field   = field
  @points  = points
  @options = options
end

Instance Attribute Details

#fieldObject

Returns the value of attribute field.



7
8
9
# File 'lib/arelastic/queries/geo_shape/polygon.rb', line 7

def field
  @field
end

#optionsObject

Returns the value of attribute options.



7
8
9
# File 'lib/arelastic/queries/geo_shape/polygon.rb', line 7

def options
  @options
end

#pointsObject

Returns the value of attribute points.



7
8
9
# File 'lib/arelastic/queries/geo_shape/polygon.rb', line 7

def points
  @points
end

Instance Method Details

#as_elasticObject



15
16
17
18
19
20
21
22
# File 'lib/arelastic/queries/geo_shape/polygon.rb', line 15

def as_elastic
  params = {
    'shape' => { 'type' => 'polygon', 'coordinates' => [points] },
    'relation' => 'within'
  }.update(options)

  { 'geo_shape' => { field => params } }
end