Class: LWS::Maps::Map

Inherits:
Generic::Model show all
Defined in:
lib/lws/apps/maps.rb

Overview

The map class

Instance Attribute Summary collapse

Instance Attribute Details

#companyLWS::Auth::Company

Returns the company that maintains/owns the map.

Returns:



48
# File 'lib/lws/apps/maps.rb', line 48

belongs_to :company, class_name: "LWS::Auth::Company"

#company_idFixnum

Returns the ID of the company that maintains/owns the map.

Returns:

  • (Fixnum)

    the ID of the company that maintains/owns the map



52
# File 'lib/lws/apps/maps.rb', line 52

attribute :company_id

#created_atString (readonly)

Returns the timestamp of when the map was created.

Returns:

  • (String)

    the timestamp of when the map was created



72
# File 'lib/lws/apps/maps.rb', line 72

attribute :created_at

#idFixnum (readonly)

Returns the (unique) ID of the map.

Returns:

  • (Fixnum)

    the (unique) ID of the map



44
# File 'lib/lws/apps/maps.rb', line 44

attribute :id

#markersArray<Marker>

Returns the list of associated markers.

Returns:

  • (Array<Marker>)

    the list of associated markers



56
# File 'lib/lws/apps/maps.rb', line 56

has_many :markers

#nameString

Returns the name of the map.

Returns:

  • (String)

    the name of the map



60
# File 'lib/lws/apps/maps.rb', line 60

attribute :name

#sourceSource

Returns the map source used for tiling the map.

Returns:

  • (Source)

    the map source used for tiling the map



64
# File 'lib/lws/apps/maps.rb', line 64

belongs_to :source

#source_idFixnum

Returns the ID of the map source used for tiling the map.

Returns:

  • (Fixnum)

    the ID of the map source used for tiling the map



68
# File 'lib/lws/apps/maps.rb', line 68

attribute :source_id

#updated_atString (readonly)

Returns the timestamp of when the map was last updated.

Returns:

  • (String)

    the timestamp of when the map was last updated



76
# File 'lib/lws/apps/maps.rb', line 76

attribute :updated_at