Class: LWS::Maps::Marker
- Inherits:
-
Generic::Model
- Object
- Spyke::Base
- Generic::Model
- LWS::Maps::Marker
- Defined in:
- lib/lws/apps/maps.rb
Overview
The map marker class
Instance Attribute Summary collapse
-
#created_at ⇒ String
readonly
The timestamp of when the map marker was created.
-
#id ⇒ Fixnum
readonly
The (unique) ID of the map marker.
-
#lat ⇒ String?
The latitude of the map marker.
-
#long ⇒ String?
The longitued of the map marker.
-
#map ⇒ Map
The map that the marker is placed on.
-
#map_id ⇒ Fixnum
The ID of the map that the marker is placed on.
-
#name ⇒ String
The name of the map marker.
-
#updated_at ⇒ String
readonly
The timestamp of when the map marker was last updated.
-
#website ⇒ String?
The website URL of the map marker.
Instance Attribute Details
#created_at ⇒ String (readonly)
113 |
# File 'lib/lws/apps/maps.rb', line 113 attribute :created_at |
#id ⇒ Fixnum (readonly)
85 |
# File 'lib/lws/apps/maps.rb', line 85 attribute :id |
#lat ⇒ String?
89 |
# File 'lib/lws/apps/maps.rb', line 89 attribute :lat |
#long ⇒ String?
93 |
# File 'lib/lws/apps/maps.rb', line 93 attribute :long |
#map ⇒ Map
97 |
# File 'lib/lws/apps/maps.rb', line 97 belongs_to :map |
#map_id ⇒ Fixnum
101 |
# File 'lib/lws/apps/maps.rb', line 101 attribute :map_id |
#name ⇒ String
105 |
# File 'lib/lws/apps/maps.rb', line 105 attribute :name |
#updated_at ⇒ String (readonly)
117 |
# File 'lib/lws/apps/maps.rb', line 117 attribute :updated_at |
#website ⇒ String?
109 |
# File 'lib/lws/apps/maps.rb', line 109 attribute :website |