class Geocoder::Result::Photon

def type


:relation
:way
:node

Type of the result (OSM object type), one of:
def type
  {
    'N' => :node,
    'W' => :way,
    'R' => :relation
  }[properties['osm_type']]
end