geolocation-latlng-formatter.html.twig 540 B

12345678910111213141516171819202122
  1. {#
  2. /**
  3. * @file
  4. * Default microdata theme implementation for a geolocation with latitude, longitude.
  5. *
  6. * Available variables:
  7. * - lat: The latitude value.
  8. * - lng: The longitude value.
  9. *
  10. * @see template_preprocess()
  11. *
  12. * @ingroup themeable
  13. */
  14. #}
  15. <span typeof="Place">
  16. <span property="geo" typeof="GeoCoordinates">
  17. <meta property="latitude" content="{{ lat }}">
  18. <meta property="longitude" content="{{ lng }}">
  19. </span>
  20. <div id="mapid"></div>
  21. {# <span class="geolocation-latlng">{{ lat }}, {{ lng }}</span> #}
  22. </span>