mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-27 21:06:49 +00:00
17 lines
436 B
CoffeeScript
17 lines
436 B
CoffeeScript
Darkswarm.factory "OfnMap", (enterprisesForMap, MapModal)->
|
|
new class OfnMap
|
|
constructor: ->
|
|
@enterprises = (@extend(enterprise) for enterprise in enterprisesForMap)
|
|
|
|
# Adding methods to each enterprise
|
|
extend: (enterprise)->
|
|
new class MapMarker
|
|
icon: "/test.opng"
|
|
constructor: ->
|
|
@[k] = v for k, v of enterprise
|
|
|
|
reveal: =>
|
|
|
|
console.log @
|
|
MapModal.open @
|