moved "save track" button to leaflet, fixed waypoint icons
This commit is contained in:
parent
4d31ae22ea
commit
2da7eeb71d
@ -261,7 +261,6 @@ def save_track():
|
|||||||
|
|
||||||
db.session.add(new_comment)
|
db.session.add(new_comment)
|
||||||
db.session.commit()
|
db.session.commit()
|
||||||
print ("new comment id={}", new_comment.id)
|
|
||||||
|
|
||||||
# Create a new GPXTrack instance and save it to the database
|
# Create a new GPXTrack instance and save it to the database
|
||||||
new_track = GPSTrack(comment_id=new_comment.id, sar_call_id=sar_id, file_name=track_name, gpx_data=track_data)
|
new_track = GPSTrack(comment_id=new_comment.id, sar_call_id=sar_id, file_name=track_name, gpx_data=track_data)
|
||||||
|
@ -211,11 +211,11 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<!-- Button to trigger the modal -->
|
{# <!-- Button to trigger the modal -->#}
|
||||||
<button id="save-track-button" type="button" class="btn btn-primary" data-toggle="modal"
|
{# <button id="save-track-button" type="button" class="btn btn-primary" data-toggle="modal"#}
|
||||||
data-target="#saveTrackModal">
|
{# data-target="#saveTrackModal">#}
|
||||||
Save Track
|
{# Save Track#}
|
||||||
</button>
|
{# </button>#}
|
||||||
|
|
||||||
<!-- The Modal -->
|
<!-- The Modal -->
|
||||||
<div class="modal fade" id="saveTrackModal" tabindex="-1" role="dialog" aria-labelledby="saveTrackModalLabel"
|
<div class="modal fade" id="saveTrackModal" tabindex="-1" role="dialog" aria-labelledby="saveTrackModalLabel"
|
||||||
@ -265,7 +265,10 @@
|
|||||||
marker_options: {
|
marker_options: {
|
||||||
startIconUrl: '/static/pin-icon-start.png',
|
startIconUrl: '/static/pin-icon-start.png',
|
||||||
endIconUrl: '/static/pin-icon-end.png',
|
endIconUrl: '/static/pin-icon-end.png',
|
||||||
shadowUrl: '/static/pin-shadow.png'
|
shadowUrl: '/static/pin-shadow.png',
|
||||||
|
wptIconUrls: {
|
||||||
|
'': '/static/pin-icon-wpt.png'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}).on('loaded', function (e) {
|
}).on('loaded', function (e) {
|
||||||
map.fitBounds(e.target.getBounds());
|
map.fitBounds(e.target.getBounds());
|
||||||
@ -321,6 +324,32 @@
|
|||||||
// You can use AJAX or any method you prefer for this part
|
// You can use AJAX or any method you prefer for this part
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Create a custom control for the "Save Track" button
|
||||||
|
var saveTrackControl = L.Control.extend({
|
||||||
|
options: {
|
||||||
|
position: 'bottomleft', // You can adjust the position as needed
|
||||||
|
},
|
||||||
|
|
||||||
|
onAdd: function (map) {
|
||||||
|
// Create a container div for the button
|
||||||
|
var container = L.DomUtil.create('div', 'leaflet-bar leaflet-control');
|
||||||
|
|
||||||
|
// Create the "Save Track" button and add it to the container
|
||||||
|
var button = L.DomUtil.create('a', 'leaflet-control-button', container);
|
||||||
|
button.innerHTML = '💾' //floppy disk icon :)
|
||||||
|
|
||||||
|
// Add a click event handler to the button
|
||||||
|
L.DomEvent.on(button, 'click', function () {
|
||||||
|
// Open your modal dialog for saving the track here
|
||||||
|
$('#saveTrackModal').modal('show');
|
||||||
|
});
|
||||||
|
|
||||||
|
return container;
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
// Add the custom control to your map
|
||||||
|
new saveTrackControl().addTo(map);
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user