You are here

leafletgeojson-map.html.twig in Leaflet GeoJSON 8

Theme implementation to display a Geojson Leaflet map.

This creates a placeholder for the map to be injected in ( Available variables:

  • map_id
  • height

Note: min-width is set so that a map will show when "Inline" is specified for the associated field label. This may of course be overridden. The default field label style is "Above" with a width of 100%.

See also

Leaflet)

File

templates/leafletgeojson-map.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Theme implementation to display a Geojson Leaflet map.
  5. *
  6. * This creates a placeholder for the map to be injected in (@see Leaflet)
  7. *
  8. * Available variables:
  9. * - map_id
  10. * - height
  11. *
  12. * Note: min-width is set so that a map will show when "Inline" is specified
  13. * for the associated field label. This may of course be overridden. The default
  14. * field label style is "Above" with a width of 100%.
  15. *
  16. * @ingroup themeable
  17. *
  18. */
  19. #}
  20. <div class="block-map-loading-wrapper">
  21. <div class="ajax-progress ajax-progress-throbber">
  22. <div class="throbber">&nbsp;</div>
  23. </div>
  24. </div>
  25. {% include '@leaflet/leaflet-map.html.twig' %}