Module: Decidim::MapHelper
- Defined in:
- app/helpers/decidim/map_helper.rb
Overview
This helper include some methods for rendering resources static and dynamic maps.
Instance Method Summary collapse
- #dynamic_map_for(options_or_markers = {}, html_options = {}) ⇒ Object
-
#static_map_link(resource, options = {}, map_html_options = {}) ⇒ Object
Renders a link to openstreetmaps with the resource latitude and longitude.
Instance Method Details
#dynamic_map_for(options_or_markers = {}, html_options = {}) ⇒ Object
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
# File 'app/helpers/decidim/map_helper.rb', line 60 def dynamic_map_for( = {}, = {}, &) return unless map_utility_dynamic = { popup_template_id: "marker-popup" } if .is_a?(Array) [:markers] = else = .merge() end builder = map_utility_dynamic.create_builder(self, ) = { id: "map" }.merge() bottom_id = "#{[:id]}_bottom" help = content_tag(:div, class: "map__skip-container") do sr_content = content_tag(:p, t("screen_reader_explanation", scope: "decidim.map.dynamic"), class: "sr-only") link = link_to(t("skip_button", scope: "decidim.map.dynamic"), "##{bottom_id}", class: "map__skip") sr_content + link end map = builder.map_element(, &) bottom = content_tag(:div, "", id: bottom_id) content_tag(:div, help + map + bottom) end |
#static_map_link(resource, options = {}, map_html_options = {}) ⇒ Object
Renders a link to openstreetmaps with the resource latitude and longitude. The link’s content is a static map image.
resource - A geolocalizable resource options - An optional hash of options (default: { zoom: 17 })
* zoom: A number to represent the zoom value of the map
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
# File 'app/helpers/decidim/map_helper.rb', line 12 def static_map_link(resource, = {}, = {}, &) return unless resource.geocoded_and_valid? return unless map_utility_static || map_utility_dynamic address_text = resource.try(:address) address_text ||= t("latlng_text", latitude:, longitude:, scope: "decidim.map.static") map_service_brand = t("map_service_brand", scope: "decidim.map.static") if map_utility_static map_url = map_utility_static.link( latitude: resource.latitude, longitude: resource.longitude, options: ) # Check that the static map utility actually returns a URL before # creating the static map utility. If it does not, the image would be # otherwise blank. if map_utility_static.url(latitude: resource.latitude, longitude: resource.longitude) = { class: "static-map", target: "_blank", rel: "noopener", data: { "external-link": "text-only" } }.merge() return link_to(map_url, ) do image_tag decidim.static_map_path(sgid: resource.to_sgid.to_s), alt: "#{map_service_brand} - #{address_text}" end end end # Fall back to the dynamic map utility in case static maps are not # provided. builder = map_utility_dynamic.create_builder(self, { type: :static, latitude: resource.latitude, longitude: resource.longitude, zoom: 15, title: "#{map_service_brand} - #{address_text}", link: map_url }.merge()) builder.map_element( { class: "static-map", tabindex: "0" }.merge(), & ) end |