You are here

geofield-latlon.html.twig in Geofield 8

Default theme implementation for Geofield LatLon.

Available variables:

  • lat: The Latitude value.
  • lon: The Longitude value.

File

templates/geofield-latlon.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for Geofield LatLon.
  5. *
  6. * Available variables:
  7. * - lat: The Latitude value.
  8. * - lon: The Longitude value.
  9. *
  10. * @ingroup themeable
  11. */
  12. #}
  13. <span class="latlon latlon-lat">{{ lat }}</span>, <span class="latlon latlon-lon">{{ lon }}</span>