You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
739 B

  1. <h6>{{ element.type|capitalize }} {{ element.id }}</h6>
  2. <p>Voir sur <a href="https://www.openstreetmap.org/{{ element.type }}/{{ element.id }}" target="_blank">OSM</a>
  3. <br/>sur <a href="https://api.panoramax.xyz/#focus=map&map={{ element.map.zoom }}/{{ element.map.center.lat }}/{{ element.map.center.lng }}" target="_blank">Panoramax<a>
  4. {% if element.type == 'relation' and element.tags and element.tags.route and element.tags.route == 'hiking' %}
  5. <br/>sur <a href="https://hiking.waymarkedtrails.org/#route?id={{ element.id }}&type=relation" target="_blank">WayMarkedTrails</a>
  6. {% endif %}
  7. <table><tbody>
  8. {% for key, value in element.tags %}
  9. <tr><th>{{ key }}</th><td>{{ value }}</td></tr>
  10. {% endfor %}
  11. </tbody></table>
  12. </p>