2023-12-10 10:42:32 +00:00
|
|
|
<!-- Stylesheets -->
|
|
|
|
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css"/>
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.draw/1.0.4/leaflet.draw.css">
|
|
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
|
|
|
|
<link rel="stylesheet" href="https://unpkg.com/leaflet-control-geocoder@2.4.0/dist/Control.Geocoder.css"/>
|
2023-12-10 16:45:52 +00:00
|
|
|
<link rel='stylesheet'
|
|
|
|
href='https://api.mapbox.com/mapbox.js/plugins/leaflet-fullscreen/v1.0.1/leaflet.fullscreen.css'/>
|
2023-12-10 10:42:32 +00:00
|
|
|
<!-- Scripts -->
|
|
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
|
|
|
|
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script>
|
|
|
|
<script src="https://unpkg.com/leaflet-control-geocoder@2.4.0/dist/Control.Geocoder.js"></script>
|
2023-12-10 12:58:09 +00:00
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet-gpx/1.7.0/gpx.min.js"></script>
|
2023-12-10 10:42:32 +00:00
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet.draw/1.0.4/leaflet.draw.js"></script>
|
2023-12-10 13:46:54 +00:00
|
|
|
<script src='https://api.mapbox.com/mapbox.js/plugins/leaflet-fullscreen/v1.0.1/Leaflet.fullscreen.min.js'></script>
|
2023-12-10 10:42:32 +00:00
|
|
|
<script src='https://unpkg.com/@turf/turf@6/turf.min.js'></script>
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
|
|
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
|
2023-12-10 16:45:52 +00:00
|
|
|
<script>
|
|
|
|
{% include 'togpx.js' %}
|
|
|
|
</script>
|
2023-12-10 10:42:32 +00:00
|
|
|
|
|
|
|
<style>
|
|
|
|
#map {
|
|
|
|
height: 400px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
margin: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.comment-text {
|
|
|
|
white-space: pre-line;
|
|
|
|
}
|
2023-12-10 13:46:54 +00:00
|
|
|
|
|
|
|
.leaflet-container {
|
|
|
|
cursor: crosshair;
|
|
|
|
}
|
2023-12-11 15:12:12 +00:00
|
|
|
|
|
|
|
.circle-icon{
|
|
|
|
background: #f03;
|
|
|
|
border-radius: 50%;
|
|
|
|
color: white;
|
|
|
|
padding: 2px 4px;
|
|
|
|
text-align: center;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2023-12-10 10:42:32 +00:00
|
|
|
</style>
|