class OSMObject

OSM Object

A main

Attributes

created_at[R]
geometry[R]
id[R]
tags[R]
uid[R]
user[R]

Public Class Methods

new(args) click to toggle source
# File models/DomainObjects.rb, line 14
def initialize(args)
        @id         ||= args[:id].to_s
        @uid          ||= args[:uid]
        @user                 ||= args[:user]
        @created_at ||= args[:created_at]
        @tags       ||= args[:tags]
end