1
0
forked from orson/bachemap
bachemap/templates/index.html

79 lines
3.2 KiB
HTML
Raw Normal View History

{% extends 'base.html' %}
{% block content %}
2024-08-21 19:38:01 +00:00
<div id="map" style="height: 100%; border-style: groove; border-radius: 22px; border-width: 4px; position: absolute;"></div>
<script>
//setView([51.505, -0.09], 13);
var map = new L.map('map', center=([20.57, -100.38], zoom=13));
var user_marker = new L.marker([20.57, -100.38]);
var user_radial = new L.circle(L.circle(user_marker.latlng))
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution: '© OpenStreetMap contributors'
}).addTo(map);
2024-08-21 19:38:01 +00:00
{% for pin in pins %}
var marker = L.marker([{{ pin.lat }}, {{ pin.lng }}]).addTo(map)
.bindPopup("<b>{{ pin.description }}</b><p>Fecha del reporte: {{pin.time}}</p><br><img src='{{ pin.photo }}'>");
//{% endfor %}
//var live_location = map.locate()
//if (navigator.geolocation) {
// navigator.geolocation.getCurrentPosition((position)) => {
// change map position
// };
// };
//var youarehere = L.marker([latlng.lat, latlng.lng]).addTo(map);
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution: '© OpenStreetMap contributors'
}).addTo(map);
// Geolocation function
function onLocationFound(e) {
var radius = e.accuracy / 2; // Accuracy of the location
// Add a pin (marker) at the user's location
user_marker = L.marker(e.latlng).addTo(map)
.bindPopup("Te detectamos en un radio de " + radius + " metros de este punto").openPopup();
// Add a circle around the user's location
user_radial = L.circle(e.latlng, radius).addTo(map);
// Center the map on the user's location
2024-08-21 19:38:01 +00:00
map.setView(e.latlng, 16); // Adjust zoom level as needed
//return marker, radial;
}
// Error handling for geolocation
function onLocationError(e) {
alert(e.message);
}
// Use Leaflet's built-in location detection
map.on('locationfound', onLocationFound);
map.on('locationerror', onLocationError);
// Start the location detection
map.locate({setView: true, maxZoom: 16});
map.on('click', function(e) {
var latlng = e.latlng;
2024-08-21 19:38:01 +00:00
document.getElementById('lat').value = latlng.lat;
document.getElementById('lng').value = latlng.lng;
map.flyTo(e.latlng, zoom=18);
//map.eachLayer( function (layer)) {
// console.log(layer);
// map.removeLayer(layer);
//};
//marker.remove();
//radial.remove();
2024-08-21 19:38:01 +00:00
user_marker.setLatLng(e.latlng).bindPopup('<button id="pinner-pop">Agregar bache-o-cosa</button>').openPopup();
user_radial.remove();
//setLanLng(e.latlng);
});
2024-08-21 19:38:01 +00:00
</script>
{% endblock %}