29 lines
1023 B
HTML
29 lines
1023 B
HTML
<!-- Leaflet (JS/CSS) -->
|
|
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.6.0/dist/leaflet.css"
|
|
integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ=="
|
|
crossorigin=""/>
|
|
<script src="https://unpkg.com/leaflet@1.6.0/dist/leaflet.js"
|
|
integrity="sha512-gZwIG9x3wUXg2hdXF6+rVkLF/0Vi9U8D2Ntg4Ga5I5BZpVkVxlJWbSQtXPSiUTtC0TjtGOmxa1AJPuV0CPthew=="
|
|
crossorigin=""></script>
|
|
|
|
<!-- leaflet-elevation -->
|
|
<link rel="stylesheet" href="https://unpkg.com/@raruto/leaflet-elevation@1.1.1/dist/leaflet-elevation.css" />
|
|
<script src="{{ .Site.BaseURL }}/js/leaflet.elevation.js"></script>
|
|
|
|
<!-- leaflet-hugo -->
|
|
<script src="{{ .Site.BaseURL }}/js/leaflet.hugo.js"></script>
|
|
|
|
<style>
|
|
.fa-icon-marker {
|
|
text-align: center;
|
|
width: 100%;
|
|
}
|
|
.download-track {
|
|
background-color: #e1e1e1;
|
|
text-align: center;
|
|
margin-bottom: 25px;
|
|
border-radius: 0 0 10px 10px;
|
|
cursor: pointer;
|
|
}
|
|
</style>
|