8 lines
137 B
Ruby
8 lines
137 B
Ruby
module MapLocationAttributes
|
|
extend ActiveSupport::Concern
|
|
|
|
def map_location_attributes
|
|
[:latitude, :longitude, :zoom]
|
|
end
|
|
end
|