# SPDX-FileCopyrightText: 2020 IN COMMON Collective # # SPDX-License-Identifier: AGPL-3.0-or-later module MapHelper def map_container(map = Map.first) raw tag.div( tag.div(id: 'map', data: { target: 'map.container' }), data: { controller: 'map', 'map-latitude': map.latitude, 'map-longitude': map.longitude, 'map-zoom': map.zoom }) end end